diff options
author | Amy Griffis <amy.griffis@hp.com> | 2005-11-03 10:57:06 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-03-20 14:08:53 -0500 |
commit | f38aa94224c5517a40ba56d453779f70d3229803 (patch) | |
tree | 30d0f7390cb2f1cf33a55080cb6c0676727af1fa /kernel | |
parent | 90d526c074ae5db484388da56c399acf892b6c17 (diff) |
[PATCH] Pass dentry, not just name, in fsnotify creation hooks.
The audit hooks (to be added shortly) will want to see dentry->d_inode
too, not just the name.
Signed-off-by: Amy Griffis <amy.griffis@hp.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/auditsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 95076fa12202..55ba331757c5 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c | |||
@@ -515,7 +515,7 @@ static int audit_filter_rules(struct task_struct *tsk, | |||
515 | case AUDIT_INODE: | 515 | case AUDIT_INODE: |
516 | if (ctx) { | 516 | if (ctx) { |
517 | for (j = 0; j < ctx->name_count; j++) { | 517 | for (j = 0; j < ctx->name_count; j++) { |
518 | if (audit_comparator(ctx->names[j].ino, op, value)) { | 518 | if ( audit_comparator(ctx->names[j].ino, op, value)) { |
519 | ++result; | 519 | ++result; |
520 | break; | 520 | break; |
521 | } | 521 | } |