* [Cluster-devel] [GFS2 PATCH] gfs2: Fix error exit in do_xmote
[not found] <2023765258.24440482.1587670514858.JavaMail.zimbra@redhat.com>
@ 2020-04-23 19:35 ` Bob Peterson
0 siblings, 0 replies; only message in thread
From: Bob Peterson @ 2020-04-23 19:35 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi,
Before this patch , if an error was detected from glock function go_sync by
function do_xmote, it would return. But the function had temporarily
unlocked the gl_lockref spin_lock, and it never re-locked it.
When the caller of do_xmote tried to unlock it again, it was already
unlocked, which resulted in a corrupted spin_lock value.
This patch changes the "return" to "goto out" so the spin_lock gets
proper re-locked upon exit.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
---
fs/gfs2/glock.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index 29f9b6684b74..a1c5f245553f 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -613,7 +613,7 @@ __acquires(&gl->gl_lockref.lock)
fs_err(sdp, "Error %d syncing glock \n", ret);
gfs2_dump_glock(NULL, gl, true);
}
- return;
+ goto out;
}
}
if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) {
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-04-23 19:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <2023765258.24440482.1587670514858.JavaMail.zimbra@redhat.com>
2020-04-23 19:35 ` [Cluster-devel] [GFS2 PATCH] gfs2: Fix error exit in do_xmote Bob Peterson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.