From 46e87a2755f37e19bcf7f0e36dbbfeabfd37d40d Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 2 Jul 2005 14:10:46 +0100 Subject: [PATCH] --- yaml --- r: 8876 b: refs/heads/master c: 21af6c4f2aa5f63138871b4ddd77d7ebf2588c9d h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/kernel/auditsc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index b7c8e594c094..7f3a69d4e0c8 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: ac4cec443a80bfde829516e7a7db10f7325aa528 +refs/heads/master: 21af6c4f2aa5f63138871b4ddd77d7ebf2588c9d diff --git a/trunk/kernel/auditsc.c b/trunk/kernel/auditsc.c index 34a990223c9e..0fdd90194ecc 100644 --- a/trunk/kernel/auditsc.c +++ b/trunk/kernel/auditsc.c @@ -516,7 +516,7 @@ static enum audit_state audit_filter_syscall(struct task_struct *tsk, int word = AUDIT_WORD(ctx->major); int bit = AUDIT_BIT(ctx->major); - if (audit_pid && ctx->pid == audit_pid) + if (audit_pid && tsk->pid == audit_pid) return AUDIT_DISABLED; rcu_read_lock(); @@ -601,7 +601,7 @@ static inline struct audit_context *audit_get_context(struct task_struct *tsk, context->return_valid = return_valid; context->return_code = return_code; - if (context->in_syscall && !context->auditable && tsk->pid != audit_pid) { + if (context->in_syscall && !context->auditable) { enum audit_state state; state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]); if (state == AUDIT_RECORD_CONTEXT)