diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-25 02:19:55 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:11 -0500 |
commit | 1a4eeaf2a8c07404e2d1c3ff99b393fd4c207170 (patch) | |
tree | dd67d87c51ac0338432faa5f6e6d28d56d724baa /fs/mount.h | |
parent | fc7be130c7e91cf693d4bc2d9b11f08a5a4893d0 (diff) | |
download | linux-3.10-1a4eeaf2a8c07404e2d1c3ff99b393fd4c207170.tar.gz linux-3.10-1a4eeaf2a8c07404e2d1c3ff99b393fd4c207170.tar.bz2 linux-3.10-1a4eeaf2a8c07404e2d1c3ff99b393fd4c207170.zip |
vfs: move mnt_list 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, 2 insertions, 1 deletions
diff --git a/fs/mount.h b/fs/mount.h index 9217e03ba5e..7060d2a6f80 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -19,7 +19,8 @@ struct mount { #endif struct list_head mnt_mounts; /* list of children, anchored here */ struct list_head mnt_child; /* and going through their mnt_child */ - /* yet to be moved - up to mnt_list */ + /* yet to be moved - up to mnt_devname */ + struct list_head mnt_list; struct list_head mnt_expire; /* link in fs-specific expiry list */ struct list_head mnt_share; /* circular list of shared mounts */ struct list_head mnt_slave_list;/* list of slave mounts */ |