summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2021-05-21 15:08:38 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-20 16:15:45 +0200
commitd5473f43e4fb27550512bebf62d029f4850b4b3d (patch)
tree4464c7ebbb2105ef2349b8f15586b2e05902ba29 /fs
parent96a6185a9f0966347d7133268d824c8cf09ebbf3 (diff)
downloadlinux-stable-d5473f43e4fb27550512bebf62d029f4850b4b3d.tar.gz
linux-stable-d5473f43e4fb27550512bebf62d029f4850b4b3d.tar.bz2
linux-stable-d5473f43e4fb27550512bebf62d029f4850b4b3d.zip
fs: dlm: cancel work sync othercon
[ Upstream commit c6aa00e3d20c2767ba3f57b64eb862572b9744b3 ] These rx tx flags arguments are for signaling close_connection() from which worker they are called. Obviously the receive worker cannot cancel itself and vice versa for swork. For the othercon the receive worker should only be used, however to avoid deadlocks we should pass the same flags as the original close_connection() was called. Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/dlm/lowcomms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
index a93ebffe84b3..f476a90e8aae 100644
--- a/fs/dlm/lowcomms.c
+++ b/fs/dlm/lowcomms.c
@@ -609,7 +609,7 @@ static void close_connection(struct connection *con, bool and_other,
}
if (con->othercon && and_other) {
/* Will only re-enter once. */
- close_connection(con->othercon, false, true, true);
+ close_connection(con->othercon, false, tx, rx);
}
if (con->rx_page) {
__free_page(con->rx_page);