diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 21:47:05 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:57:04 -0500 |
commit | 676da58df740f325034b8641311413c2393588e1 (patch) | |
tree | 88d1e385d368d73c7b1284da2fc46516879a867d /fs/mount.h | |
parent | 1ab597386205f8dc757cf8750465502aeae65154 (diff) | |
download | linux-3.10-676da58df740f325034b8641311413c2393588e1.tar.gz linux-3.10-676da58df740f325034b8641311413c2393588e1.tar.bz2 linux-3.10-676da58df740f325034b8641311413c2393588e1.zip |
vfs: spread struct mount - mnt_has_parent
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/mount.h')
-rw-r--r-- | fs/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mount.h b/fs/mount.h index 831e7c86835..541daf568f6 100644 --- a/fs/mount.h +++ b/fs/mount.h @@ -10,9 +10,9 @@ static inline struct mount *real_mount(struct vfsmount *mnt) return container_of(mnt, struct mount, mnt); } -static inline int mnt_has_parent(struct vfsmount *mnt) +static inline int mnt_has_parent(struct mount *mnt) { - return mnt != mnt->mnt_parent; + return &mnt->mnt != mnt->mnt.mnt_parent; } extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int); |