summaryrefslogtreecommitdiffstats
path: root/security/integrity
diff options
context:
space:
mode:
authorNikolay Borisov2018-12-11 09:31:40 +0100
committerMimi Zohar2018-12-13 04:09:34 +0100
commiteed9de3b4f47114f440980203ca27c5fab70f529 (patch)
tree80b078e0aeeec624951292e6eefa6361948c11b1 /security/integrity
parentima: Support platform keyring for kernel appraisal (diff)
downloadkernel-qcow2-linux-eed9de3b4f47114f440980203ca27c5fab70f529.tar.gz
kernel-qcow2-linux-eed9de3b4f47114f440980203ca27c5fab70f529.tar.xz
kernel-qcow2-linux-eed9de3b4f47114f440980203ca27c5fab70f529.zip
ima: Use inode_is_open_for_write
Use the aptly named function rather than open coding the check. No functional changes. Signed-off-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
Diffstat (limited to 'security/integrity')
-rw-r--r--security/integrity/ima/ima_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
index df0b2ee49fa2..bd9bd5f88206 100644
--- a/security/integrity/ima/ima_main.c
+++ b/security/integrity/ima/ima_main.c
@@ -103,7 +103,7 @@ static void ima_rdwr_violation_check(struct file *file,
} else {
if (must_measure)
set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
- if ((atomic_read(&inode->i_writecount) > 0) && must_measure)
+ if (inode_is_open_for_write(inode) && must_measure)
send_writers = true;
}