]> git.karo-electronics.de Git - karo-tx-linux.git/commit
coredump: change wait_for_dump_helpers() to use wait_event_interruptible()
authorOleg Nesterov <oleg@redhat.com>
Tue, 26 Mar 2013 23:25:54 +0000 (10:25 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Apr 2013 06:19:16 +0000 (17:19 +1100)
commitf48e33e96fd54c06e55ae86ac0d1cae2cfef7250
treeecb13e500003faf1340d9f0765b9f02621b62727
parent4ec77a7f4038ea949d9f4b5668291f11319c7207
coredump: change wait_for_dump_helpers() to use wait_event_interruptible()

wait_for_dump_helpers() calls wake_up/kill_fasync from inside the
wait_event-like loop.  This is not needed and in fact this is not strictly
correct, we can/should do this only once after we change pipe->writers.
We could even check if it becomes zero.

Change this code to use use wait_event_interruptible(), this can also help
to make this wait freezable.

With this patch we check pipe->readers without pipe_lock(), this is fine.
Once we see pipe->readers == 1 we know that the handler decremented the
counter, this is all we need.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: Mandeep Singh Baines <msb@chromium.org>
Cc: Neil Horman <nhorman@redhat.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/coredump.c