diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-21 15:59:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-21 15:59:34 +0000 |
commit | 2f6e1f880b630751fa20cb29bafc06aa0f3d0fcb (patch) | |
tree | b5eeecf2b4d3f523412168b046ada344f333289f /util-linux | |
parent | 13a70ac2ab7cd2b87e7a8618c64b72b84e9fcabc (diff) |
Patch from Gernot Poerner <gp@it-netservice.de>. Adds in
mount bind support.
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 4e0e3e428..e40d75f79 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -70,6 +70,7 @@ enum { S_IMMUTABLE = 512, /* Immutable file */ MS_NOATIME = 1024, /* Do not update access times. */ MS_NODIRATIME = 2048, /* Do not update directory access times */ + MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */ }; @@ -112,6 +113,7 @@ static const struct mount_options mount_options[] = { {"rw", ~MS_RDONLY, 0}, {"suid", ~MS_NOSUID, 0}, {"sync", ~0, MS_SYNCHRONOUS}, + {"bind", ~0, MS_BIND}, {0, 0, 0} }; |