fs: dlm: interrupt posix locks only when process is killed
authorAlexander Aring <aahringo@redhat.com>
Fri, 19 May 2023 15:21:26 +0000 (11:21 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 23 Jul 2023 11:49:38 +0000 (13:49 +0200)
commit2a37d73395a51238a324a94b64bba734417ff2f8
treee90d787ba8fe442973e4bd625b083d302f5ea7a9
parenta1b6adf4b1802b8ef3b5ec99e2710294eb786a38
fs: dlm: interrupt posix locks only when process is killed

commit 59e45c758ca1b9893ac923dd63536da946ac333b upstream.

If a posix lock request is waiting for a result from user space
(dlm_controld), do not let it be interrupted unless the process
is killed. This reverts commit a6b1533e9a57 ("dlm: make posix locks
interruptible"). The problem with the interruptible change is
that all locks were cleared on any signal interrupt. If a signal
was received that did not terminate the process, the process
could continue running after all its dlm posix locks had been
cleared. A future patch will add cancelation to allow proper
interruption.

Cc: stable@vger.kernel.org
Fixes: a6b1533e9a57 ("dlm: make posix locks interruptible")
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/dlm/plock.c