diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 21:01:32 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:02 -0500 |
commit | 1b8e5564b9d34cbeb3047dd2be8ec9cd5e2785e2 (patch) | |
tree | 61633a9593b4d1c337d7182aee2e2d2af9e9f299 /fs/mount.h | |
parent | d5e50f74dd2ed6dd1bb4bf6fe58e5a7de4b77953 (diff) | |
download | op-kernel-dev-1b8e5564b9d34cbeb3047dd2be8ec9cd5e2785e2.zip op-kernel-dev-1b8e5564b9d34cbeb3047dd2be8ec9cd5e2785e2.tar.gz |
vfs: the first spoils - mnt_hash moved
taken out of struct vfsmount into struct mount
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r-- | fs/mount.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include <linux/mount.h> struct mount { + struct list_head mnt_hash; struct vfsmount mnt; }; |