]> err.no Git - linux-2.6/blobdiff - include/linux/mount.h
Auto merge with /home/aegl/GIT/linus
[linux-2.6] / include / linux / mount.h
index 196d2d6de4a36c4a395ca7d82951e6772dcd2937..74b4727a4e3023aef8b411118a2e705e26321b75 100644 (file)
@@ -47,7 +47,7 @@ static inline struct vfsmount *mntget(struct vfsmount *mnt)
 
 extern void __mntput(struct vfsmount *mnt);
 
-static inline void _mntput(struct vfsmount *mnt)
+static inline void mntput_no_expire(struct vfsmount *mnt)
 {
        if (mnt) {
                if (atomic_dec_and_test(&mnt->mnt_count))
@@ -59,7 +59,7 @@ static inline void mntput(struct vfsmount *mnt)
 {
        if (mnt) {
                mnt->mnt_expiry_mark = 0;
-               _mntput(mnt);
+               mntput_no_expire(mnt);
        }
 }