From d6db2ade10852b7c665b361239c3411abaa880b5 Mon Sep 17 00:00:00 2001 From: Veaceslav Falico <vfalico@redhat.com> Date: Wed, 10 Mar 2010 15:23:04 -0800 Subject: [PATCH] copy_signal() cleanup: clean tty_audit_fork() Remove unneeded initialization in tty_audit_fork(). It is called only via copy_signal() and is useless after the kmem_cache_zalloc() was used. Signed-off-by: Veaceslav Falico <vfalico@redhat.com> Cc: Roland McGrath <roland@redhat.com> Cc: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> --- drivers/char/tty_audit.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/char/tty_audit.c b/drivers/char/tty_audit.c index ac16fbec72d03..283a15bc84e36 100644 --- a/drivers/char/tty_audit.c +++ b/drivers/char/tty_audit.c @@ -148,7 +148,6 @@ void tty_audit_fork(struct signal_struct *sig) spin_lock_irq(¤t->sighand->siglock); sig->audit_tty = current->signal->audit_tty; spin_unlock_irq(¤t->sighand->siglock); - sig->tty_audit_buf = NULL; } /** -- GitLab