diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fs.h | 1 | ||||
-rw-r--r-- | include/linux/mount.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 6c431086abb3..551fba303cf8 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -105,6 +105,7 @@ extern int dir_notify_enable; | |||
105 | #define MS_REC 16384 | 105 | #define MS_REC 16384 |
106 | #define MS_VERBOSE 32768 | 106 | #define MS_VERBOSE 32768 |
107 | #define MS_PRIVATE (1<<18) /* change to private */ | 107 | #define MS_PRIVATE (1<<18) /* change to private */ |
108 | #define MS_SHARED (1<<20) /* change to shared */ | ||
108 | #define MS_POSIXACL (1<<16) /* VFS does not apply the umask */ | 109 | #define MS_POSIXACL (1<<16) /* VFS does not apply the umask */ |
109 | #define MS_ACTIVE (1<<30) | 110 | #define MS_ACTIVE (1<<30) |
110 | #define MS_NOUSER (1<<31) | 111 | #define MS_NOUSER (1<<31) |
diff --git a/include/linux/mount.h b/include/linux/mount.h index 8eadd3b65899..2582559718fc 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h | |||
@@ -20,6 +20,7 @@ | |||
20 | #define MNT_NOSUID 0x01 | 20 | #define MNT_NOSUID 0x01 |
21 | #define MNT_NODEV 0x02 | 21 | #define MNT_NODEV 0x02 |
22 | #define MNT_NOEXEC 0x04 | 22 | #define MNT_NOEXEC 0x04 |
23 | #define MNT_SHARED 0x10 /* if the vfsmount is a shared mount */ | ||
23 | #define MNT_PNODE_MASK 0x30 /* propogation flag mask */ | 24 | #define MNT_PNODE_MASK 0x30 /* propogation flag mask */ |
24 | 25 | ||
25 | struct vfsmount { | 26 | struct vfsmount { |
@@ -36,6 +37,7 @@ struct vfsmount { | |||
36 | char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ | 37 | char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ |
37 | struct list_head mnt_list; | 38 | struct list_head mnt_list; |
38 | struct list_head mnt_expire; /* link in fs-specific expiry list */ | 39 | struct list_head mnt_expire; /* link in fs-specific expiry list */ |
40 | struct list_head mnt_share; /* circular list of shared mounts */ | ||
39 | struct namespace *mnt_namespace; /* containing namespace */ | 41 | struct namespace *mnt_namespace; /* containing namespace */ |
40 | int mnt_pinned; | 42 | int mnt_pinned; |
41 | }; | 43 | }; |