selinux: remove secondary ops call to sb_umount
authorJames Morris <jmorris@namei.org>
Thu, 29 Jan 2009 00:55:02 +0000 (11:55 +1100)
committerJames Morris <jmorris@namei.org>
Thu, 29 Jan 2009 21:55:05 +0000 (08:55 +1100)
Remove secondary ops call to sb_umount, which is
a noop in capabilities.

Acked-by: Serge Hallyn <serue@us.ibm.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
security/selinux/hooks.c

index bdd4830..42aa8de 100644 (file)
@@ -2543,11 +2543,6 @@ static int selinux_mount(char *dev_name,
 static int selinux_umount(struct vfsmount *mnt, int flags)
 {
        const struct cred *cred = current_cred();
-       int rc;
-
-       rc = secondary_ops->sb_umount(mnt, flags);
-       if (rc)
-               return rc;
 
        return superblock_has_perm(cred, mnt->mnt_sb,
                                   FILESYSTEM__UNMOUNT, NULL);