aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Morris <jmorris@namei.org>2009-01-28 19:55:02 -0500
committerJames Morris <jmorris@namei.org>2009-01-29 16:55:05 -0500
commit97422ab9ef45118cb7418d799dc69040f17108ce (patch)
tree2dd03b47495711916bc86cc79c23197bbdd1c965
parentef935b9136eeaa203f75bf0b4d6e398c29f44d27 (diff)
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>
-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,
2543static int selinux_umount(struct vfsmount *mnt, int flags) 2543static int selinux_umount(struct vfsmount *mnt, int flags)
2544{ 2544{
2545 const struct cred *cred = current_cred(); 2545 const struct cred *cred = current_cred();
2546 int rc;
2547
2548 rc = secondary_ops->sb_umount(mnt, flags);
2549 if (rc)
2550 return rc;
2551 2546
2552 return superblock_has_perm(cred, mnt->mnt_sb, 2547 return superblock_has_perm(cred, mnt->mnt_sb,
2553 FILESYSTEM__UNMOUNT, NULL); 2548 FILESYSTEM__UNMOUNT, NULL);