aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux
diff options
context:
space:
mode:
authorJames Morris <jmorris@namei.org>2009-01-29 11:55:02 +1100
committerJames Morris <jmorris@namei.org>2009-01-30 08:55:05 +1100
commit97422ab9ef45118cb7418d799dc69040f17108ce (patch)
tree2dd03b47495711916bc86cc79c23197bbdd1c965 /security/selinux
parentselinux: remove secondary ops call to sb_mount (diff)
downloadlinux-dev-97422ab9ef45118cb7418d799dc69040f17108ce.tar.xz
linux-dev-97422ab9ef45118cb7418d799dc69040f17108ce.zip
selinux: remove secondary ops call to sb_umount
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>
Diffstat (limited to 'security/selinux')
-rw-r--r--security/selinux/hooks.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index bdd483096b39..42aa8de5f590 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -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);