Add the new 'data_len' parameter to mount calls.
Passing in zero causes the kernel to use the default for the filesystem, doing anything else here would require hacking through layers of code in 'dist'.
This commit is contained in:
parent
7af7206539
commit
29f2310244
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
|
||||
/* $srcdir/conf/trap/trap_default.h */
|
||||
#define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data)
|
||||
#define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data, 0)
|
||||
/* End of included MOUNT_TRAP macro definition file */
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue