From: Andrew Morton <akpm@osdl.org>
Date: Sun, 30 Oct 2005 22:59:23 +0000 (-0800)
Subject: [PATCH] selinux-canonicalize-getxattr-fix
X-Git-Tag: firefly_0821_release~39876^2~72^2~177
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ce4c2bd1a9dfebaefadc2d34b17c6f12101751be;p=firefly-linux-kernel-4.4.55.git

[PATCH] selinux-canonicalize-getxattr-fix

security/selinux/hooks.c: In function `selinux_inode_getxattr':
security/selinux/hooks.c:2193: warning: unused variable `sbsec'

Cc: James Morris <jmorris@namei.org>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
---

diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index d9ec85292e1c..d50d7a782cf5 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -2205,9 +2205,6 @@ static void selinux_inode_post_setxattr(struct dentry *dentry, char *name,
 
 static int selinux_inode_getxattr (struct dentry *dentry, char *name)
 {
-	struct inode *inode = dentry->d_inode;
-	struct superblock_security_struct *sbsec = inode->i_sb->s_security;
-
 	return dentry_has_perm(current, NULL, dentry, FILE__GETATTR);
 }