commit | 83adc7532229f1909cf37c429780f02f06fe05ee | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Thu Nov 24 22:37:54 2011 -0500 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Tue Jan 03 22:57:05 2012 -0500 |
tree | 7f7a36fea3f903c7f9c3f3860bc395a2ba7ad806 | |
parent | a73324da7af4052e1d1ddec6a5980f552420e58b [diff] [blame] |
vfs: spread struct mount - work with counters Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/pnode.c b/fs/pnode.c index bd28020..50fdb29 100644 --- a/fs/pnode.c +++ b/fs/pnode.c
@@ -274,7 +274,7 @@ */ static inline int do_refcount_check(struct mount *mnt, int count) { - int mycount = mnt_get_count(&mnt->mnt) - mnt->mnt.mnt_ghosts; + int mycount = mnt_get_count(mnt) - mnt->mnt.mnt_ghosts; return (mycount > count); }