Skip to content
Commit bee0a224 authored by Eric Paris's avatar Eric Paris
Browse files

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: default avatarEric Paris <eparis@redhat.com>
parent 2ce88dd0
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment