mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
evm: remove dead code in evm_inode_set_acl()
When evm_status is INTEGRITY_PASS then this function returns early and so
later codepaths that check for evm_status != INTEGRITY_PASS can be removed
as they are dead code.
Fixes: e61b135f7b
("integrity: implement get and set acl hook")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
This commit is contained in:
parent
cb2144d66b
commit
16257cf665
@ -678,13 +678,12 @@ int evm_inode_set_acl(struct user_namespace *mnt_userns, struct dentry *dentry,
|
||||
!evm_inode_set_acl_change(mnt_userns, dentry, acl_name, kacl))
|
||||
return 0;
|
||||
|
||||
if (evm_status != INTEGRITY_PASS &&
|
||||
evm_status != INTEGRITY_PASS_IMMUTABLE)
|
||||
if (evm_status != INTEGRITY_PASS_IMMUTABLE)
|
||||
integrity_audit_msg(AUDIT_INTEGRITY_METADATA, d_backing_inode(dentry),
|
||||
dentry->d_name.name, "appraise_metadata",
|
||||
integrity_status_msg[evm_status],
|
||||
-EPERM, 0);
|
||||
return evm_status == INTEGRITY_PASS ? 0 : -EPERM;
|
||||
return -EPERM;
|
||||
}
|
||||
|
||||
static void evm_reset_status(struct inode *inode)
|
||||
|
Loading…
Reference in New Issue
Block a user