diff options
Diffstat (limited to 'security/integrity')
-rw-r--r-- | security/integrity/evm/evm_crypto.c | 2 | ||||
-rw-r--r-- | security/integrity/evm/evm_main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c index babd8626bf96..6b540f1822e0 100644 --- a/security/integrity/evm/evm_crypto.c +++ b/security/integrity/evm/evm_crypto.c | |||
@@ -139,7 +139,7 @@ static int evm_calc_hmac_or_hash(struct dentry *dentry, | |||
139 | int error; | 139 | int error; |
140 | int size; | 140 | int size; |
141 | 141 | ||
142 | if (!inode->i_op || !inode->i_op->getxattr) | 142 | if (!inode->i_op->getxattr) |
143 | return -EOPNOTSUPP; | 143 | return -EOPNOTSUPP; |
144 | desc = init_desc(type); | 144 | desc = init_desc(type); |
145 | if (IS_ERR(desc)) | 145 | if (IS_ERR(desc)) |
diff --git a/security/integrity/evm/evm_main.c b/security/integrity/evm/evm_main.c index 996092f21b64..6e0bd933b6a9 100644 --- a/security/integrity/evm/evm_main.c +++ b/security/integrity/evm/evm_main.c | |||
@@ -64,7 +64,7 @@ static int evm_find_protected_xattrs(struct dentry *dentry) | |||
64 | int error; | 64 | int error; |
65 | int count = 0; | 65 | int count = 0; |
66 | 66 | ||
67 | if (!inode->i_op || !inode->i_op->getxattr) | 67 | if (!inode->i_op->getxattr) |
68 | return -EOPNOTSUPP; | 68 | return -EOPNOTSUPP; |
69 | 69 | ||
70 | for (xattr = evm_config_xattrnames; *xattr != NULL; xattr++) { | 70 | for (xattr = evm_config_xattrnames; *xattr != NULL; xattr++) { |