aboutsummaryrefslogtreecommitdiff
path: root/drivers/tty
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2013-04-30 10:43:10 -0400
committerEric Paris <eparis@redhat.com>2013-04-30 15:31:28 -0400
commit2ce88dd04276839002a3b31161090d282316610b (patch)
treed327c9d66847d261bfdd1bebd853e9c368f36dab /drivers/tty
parent46e959ea2969cc1668d09b0dc55226946cf781f1 (diff)
audit: do not needlessly take a spinlock in copy_signal
current->signal->audit_* can only change from a netlink message from current. Obviously in this case we cannot be handling a netlink message from current. So there is no change these can change under us. No need to take a lock to read them. Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/tty_audit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/tty/tty_audit.c b/drivers/tty/tty_audit.c
index 5f386820218..a03a75163f0 100644
--- a/drivers/tty/tty_audit.c
+++ b/drivers/tty/tty_audit.c
@@ -134,12 +134,8 @@ void tty_audit_exit(void)
*/
void tty_audit_fork(struct signal_struct *sig)
{
- unsigned long flags;
-
- spin_lock_irqsave(&current->sighand->siglock, flags);
sig->audit_tty = current->signal->audit_tty;
sig->audit_tty_log_passwd = current->signal->audit_tty_log_passwd;
- spin_unlock_irqrestore(&current->sighand->siglock, flags);
}
/**