aboutsummaryrefslogtreecommitdiffstats
path: root/fs/namespace.c
diff options
context:
space:
mode:
authorRam Pai <linuxram@us.ibm.com>2005-11-07 17:20:48 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-07 21:18:11 -0500
commita58b0eb8e64b78d9315a5491955e78b1391d42e5 (patch)
tree546f77cb0338c817ef1e34d8ebbc6eaf0e5d6be9 /fs/namespace.c
parenta05964f3917c7c55368c229d7985f8e7c9977e97 (diff)
[PATCH] introduce slave mounts
A slave mount always has a master mount from which it receives mount/umount events. Unlike shared mount the event propagation does not flow from the slave mount to the master. Signed-off-by: Ram Pai <linuxram@us.ibm.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r--fs/namespace.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index 4b1af01c2fb4..46f99bc585bd 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -67,6 +67,8 @@ struct vfsmount *alloc_vfsmnt(const char *name)
67 INIT_LIST_HEAD(&mnt->mnt_list); 67 INIT_LIST_HEAD(&mnt->mnt_list);
68 INIT_LIST_HEAD(&mnt->mnt_expire); 68 INIT_LIST_HEAD(&mnt->mnt_expire);
69 INIT_LIST_HEAD(&mnt->mnt_share); 69 INIT_LIST_HEAD(&mnt->mnt_share);
70 INIT_LIST_HEAD(&mnt->mnt_slave_list);
71 INIT_LIST_HEAD(&mnt->mnt_slave);
70 if (name) { 72 if (name) {
71 int size = strlen(name) + 1; 73 int size = strlen(name) + 1;
72 char *newname = kmalloc(size, GFP_KERNEL); 74 char *newname = kmalloc(size, GFP_KERNEL);
@@ -1243,7 +1245,7 @@ long do_mount(char *dev_name, char *dir_name, char *type_page,
1243 data_page); 1245 data_page);
1244 else if (flags & MS_BIND) 1246 else if (flags & MS_BIND)
1245 retval = do_loopback(&nd, dev_name, flags & MS_REC); 1247 retval = do_loopback(&nd, dev_name, flags & MS_REC);
1246 else if (flags & (MS_SHARED | MS_PRIVATE)) 1248 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE))
1247 retval = do_change_type(&nd, flags); 1249 retval = do_change_type(&nd, flags);
1248 else if (flags & MS_MOVE) 1250 else if (flags & MS_MOVE)
1249 retval = do_move_mount(&nd, dev_name); 1251 retval = do_move_mount(&nd, dev_name);