diff options
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,7 @@ enum { | |||
70 | S_IMMUTABLE = 512, /* Immutable file */ | 70 | S_IMMUTABLE = 512, /* Immutable file */ |
71 | MS_NOATIME = 1024, /* Do not update access times. */ | 71 | MS_NOATIME = 1024, /* Do not update access times. */ |
72 | MS_NODIRATIME = 2048, /* Do not update directory access times */ | 72 | MS_NODIRATIME = 2048, /* Do not update directory access times */ |
73 | MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */ | ||
73 | }; | 74 | }; |
74 | 75 | ||
75 | 76 | ||
@@ -112,6 +113,7 @@ static const struct mount_options mount_options[] = { | |||
112 | {"rw", ~MS_RDONLY, 0}, | 113 | {"rw", ~MS_RDONLY, 0}, |
113 | {"suid", ~MS_NOSUID, 0}, | 114 | {"suid", ~MS_NOSUID, 0}, |
114 | {"sync", ~0, MS_SYNCHRONOUS}, | 115 | {"sync", ~0, MS_SYNCHRONOUS}, |
116 | {"bind", ~0, MS_BIND}, | ||
115 | {0, 0, 0} | 117 | {0, 0, 0} |
116 | }; | 118 | }; |
117 | 119 | ||