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/pnode.c | |
parent | 15169fe784a9846b24cdb0840329d41aebc23249 (diff) | |
download | op-kernel-dev-863d684f946eb240c7dd57d265d88315950ca5cc.zip op-kernel-dev-863d684f946eb240c7dd57d265d88315950ca5cc.tar.gz |
vfs: move the rest of int fields to struct mount
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/pnode.c')
-rw-r--r-- | fs/pnode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ out: */ static inline int do_refcount_check(struct mount *mnt, int count) { - int mycount = mnt_get_count(mnt) - mnt->mnt.mnt_ghosts; + int mycount = mnt_get_count(mnt) - mnt->mnt_ghosts; return (mycount > count); } |