[PATCH] ocfs2: Clean up errors in dlmunlock.c

From: KaiLong Wang
Date: Fri Oct 13 2023 - 03:47:35 EST


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@xxxxxxx>
---
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