* [Cluster-devel] [PATCH] gfs2: Add gfs2_holder_is_compatible helper
@ 2021-05-20 11:34 Andreas Gruenbacher
0 siblings, 0 replies; only message in thread
From: Andreas Gruenbacher @ 2021-05-20 11:34 UTC (permalink / raw)
To: cluster-devel.redhat.com
This function checks if a glock holder's locking state is compatible with
another locking state.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
fs/gfs2/glock.h | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/fs/gfs2/glock.h b/fs/gfs2/glock.h
index 31a8f2f649b5..f0ef6fd24ba4 100644
--- a/fs/gfs2/glock.h
+++ b/fs/gfs2/glock.h
@@ -49,6 +49,20 @@ enum {
#define LM_ST_DEFERRED 2
#define LM_ST_SHARED 3
+static inline bool gfs2_holder_is_compatible(struct gfs2_holder *gh, int state) {
+ BUG_ON(state == LM_ST_UNLOCKED);
+ switch(gh->gh_state) {
+ case LM_ST_EXCLUSIVE:
+ return state != LM_ST_DEFERRED;
+ case LM_ST_DEFERRED:
+ return state == LM_ST_DEFERRED;
+ case LM_ST_SHARED:
+ return state == LM_ST_SHARED;
+ default:
+ return false;
+ }
+}
+
/*
* lm_lock() flags
*
--
2.26.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-05-20 11:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-20 11:34 [Cluster-devel] [PATCH] gfs2: Add gfs2_holder_is_compatible helper Andreas Gruenbacher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).