diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-25 00:57:42 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:10 -0500 |
commit | 863d684f946eb240c7dd57d265d88315950ca5cc (patch) | |
tree | 99b3c84299b2e273465f023bcbcc16a231529260 /fs/mount.h | |
parent | 15169fe784a9846b24cdb0840329d41aebc23249 (diff) |
vfs: move the rest of int fields to struct mount
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r-- | fs/mount.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/mount.h b/fs/mount.h index c7bd401960ea..9217e03ba5e7 100644 --- a/fs/mount.h +++ b/fs/mount.h | |||
@@ -28,6 +28,9 @@ struct mount { | |||
28 | struct mnt_namespace *mnt_ns; /* containing namespace */ | 28 | struct mnt_namespace *mnt_ns; /* containing namespace */ |
29 | int mnt_id; /* mount identifier */ | 29 | int mnt_id; /* mount identifier */ |
30 | int mnt_group_id; /* peer group identifier */ | 30 | int mnt_group_id; /* peer group identifier */ |
31 | int mnt_expiry_mark; /* true if marked for expiry */ | ||
32 | int mnt_pinned; | ||
33 | int mnt_ghosts; | ||
31 | }; | 34 | }; |
32 | 35 | ||
33 | static inline struct mount *real_mount(struct vfsmount *mnt) | 36 | static inline struct mount *real_mount(struct vfsmount *mnt) |