]> Pileus Git - ~andy/linux/commit
audit: do not needlessly take a lock in tty_audit_exit
authorEric Paris <eparis@redhat.com>
Tue, 30 Apr 2013 14:46:46 +0000 (10:46 -0400)
committerEric Paris <eparis@redhat.com>
Tue, 30 Apr 2013 19:31:28 +0000 (15:31 -0400)
commitbee0a224e791cccbc7ecd7faf2d5932942668976
tree2ce6e13d41ce4c6b30e68ca18700d695ca950206
parent2ce88dd04276839002a3b31161090d282316610b
audit: do not needlessly take a lock in tty_audit_exit

We were doing spin_lock_irq and spin_unlock_irq.  This is STOOPID.

If we were in interupt context we were already screwed and called
panic() in do_exit().  So the irq stuff is useless.  Also, these values
can only be changed by receiving a netlink message from current.  Since
we are in do_exit() clearly we aren't in the syscall sending the netlink
message to change these values.  Thus, just read them and go with it.

Signed-off-by: Eric Paris <eparis@redhat.com>
drivers/tty/tty_audit.c