* [PATCH] ocfs2: Clean up errors in dlmunlock.c
@ 2023-10-13 7:45 KaiLong Wang
0 siblings, 0 replies; only message in thread
From: KaiLong Wang @ 2023-10-13 7:45 UTC (permalink / raw)
To: mark, jlbec; +Cc: ocfs2-devel, linux-kernel
Fix the following errors reported by checkpatch:
ERROR: spaces required around that '<' (ctx:VxV)
ERROR: spaces required around that '=' (ctx:VxV)
ERROR: space required before that '&' (ctx:OxV)
ERROR: spaces required around that '==' (ctx:VxV)
ERROR: spaces required around that ':' (ctx:VxE)
Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
---
fs/ocfs2/dlm/dlmunlock.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/fs/ocfs2/dlm/dlmunlock.c b/fs/ocfs2/dlm/dlmunlock.c
index 7318e4794ef9..ac9b29b2a11f 100644
--- a/fs/ocfs2/dlm/dlmunlock.c
+++ b/fs/ocfs2/dlm/dlmunlock.c
@@ -184,8 +184,8 @@ static enum dlm_status dlmunlock_common(struct dlm_ctxt *dlm,
mlog(0, "%s:%.*s: clearing actions, %s\n",
dlm->name, res->lockname.len,
res->lockname.name,
- status==DLM_RECOVERING?"recovering":
- (status==DLM_MIGRATING?"migrating":
+ status == DLM_RECOVERING ? "recovering" :
+ (status == DLM_MIGRATING ? "migrating" :
(status == DLM_FORWARD ? "forward" :
"nolockmanager")));
actions = 0;
@@ -436,7 +436,7 @@ int dlm_unlock_lock_handler(struct o2net_msg *msg, u32 len, void *data,
goto not_found;
}
- queue=&res->granted;
+ queue = &res->granted;
spin_lock(&res->spinlock);
if (res->state & DLM_LOCK_RES_RECOVERING) {
spin_unlock(&res->spinlock);
@@ -459,7 +459,7 @@ int dlm_unlock_lock_handler(struct o2net_msg *msg, u32 len, void *data,
goto leave;
}
- for (i=0; i<3; i++) {
+ for (i = 0; i < 3; i++) {
list_for_each_entry(iter, queue, list) {
if (iter->ml.cookie == unlock->cookie &&
iter->ml.node == unlock->node_idx) {
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-10-13 7:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13 7:45 [PATCH] ocfs2: Clean up errors in dlmunlock.c KaiLong Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®