[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1237412967-20754-3-git-send-email-dmitri.vorobiev@movial.com>
Date: Wed, 18 Mar 2009 23:49:27 +0200
From: Dmitri Vorobiev <dmitri.vorobiev@...ial.com>
To: akpm@...ux-foundation.org, linux-kernel@...r.kernel.org
Cc: Dmitri Vorobiev <dmitri.vorobiev@...ial.com>
Subject: [PATCH 3/3] Restrict definition of a static function in kernel/auditsc.c
The function 'audit_set_auditable' in kernel/auditsc.c is called
only when the CONFIG_AUDIT_TREE option is set. Therefore, the
following warning may be produced:
kernel/auditsc.c:745: warning: 'audit_set_auditable' defined but not used
This patch fixes the warning by moving the function definition under an
appropriate preprocessor construct.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@...ial.com>
---
kernel/auditsc.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 8cbddff..bac40d0 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -741,6 +741,7 @@ void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx)
rcu_read_unlock();
}
+#ifdef CONFIG_AUDIT_TREE
static void audit_set_auditable(struct audit_context *ctx)
{
if (!ctx->prio) {
@@ -748,6 +749,7 @@ static void audit_set_auditable(struct audit_context *ctx)
ctx->current_state = AUDIT_RECORD_CONTEXT;
}
}
+#endif
static inline struct audit_context *audit_get_context(struct task_struct *tsk,
int return_valid,
--
1.5.6.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists