aboutsummaryrefslogtreecommitdiffstats
path: root/security/integrity
diff options
context:
space:
mode:
authorMimi Zohar <zohar@linux.vnet.ibm.com>2010-01-26 17:02:40 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2010-02-07 03:06:22 -0500
commit9bbb6cad0173e6220f3ac609e26beb48dab3b7cd (patch)
tree680e0de3071c938ca9858fa9ed5bd5ca8ff2f20f /security/integrity
parent54bb6552bd9405dc7685653157a4ec260c77a71c (diff)
ima: rename ima_path_check to ima_file_check
ima_path_check actually deals with files! call it ima_file_check instead. Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Mimi Zohar <zohar@linux.vnet.ibm.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/integrity')
-rw-r--r--security/integrity/ima/ima_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c
index eb1cf6498cc9..b76e1f03ea2b 100644
--- a/security/integrity/ima/ima_main.c
+++ b/security/integrity/ima/ima_main.c
@@ -14,7 +14,7 @@
14 * 14 *
15 * File: ima_main.c 15 * File: ima_main.c
16 * implements the IMA hooks: ima_bprm_check, ima_file_mmap, 16 * implements the IMA hooks: ima_bprm_check, ima_file_mmap,
17 * and ima_path_check. 17 * and ima_file_check.
18 */ 18 */
19#include <linux/module.h> 19#include <linux/module.h>
20#include <linux/file.h> 20#include <linux/file.h>
@@ -306,7 +306,7 @@ int ima_bprm_check(struct linux_binprm *bprm)
306 * Always return 0 and audit dentry_open failures. 306 * Always return 0 and audit dentry_open failures.
307 * (Return code will be based upon measurement appraisal.) 307 * (Return code will be based upon measurement appraisal.)
308 */ 308 */
309int ima_path_check(struct file *file, int mask) 309int ima_file_check(struct file *file, int mask)
310{ 310{
311 int rc; 311 int rc;
312 312
@@ -315,7 +315,7 @@ int ima_path_check(struct file *file, int mask)
315 PATH_CHECK); 315 PATH_CHECK);
316 return 0; 316 return 0;
317} 317}
318EXPORT_SYMBOL_GPL(ima_path_check); 318EXPORT_SYMBOL_GPL(ima_file_check);
319 319
320static int __init init_ima(void) 320static int __init init_ima(void)
321{ 321{