lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <f2d4ee9.96a.18b27ffa1db.Coremail.wangkailong@jari.cn>
Date:   Fri, 13 Oct 2023 15:45:46 +0800 (GMT+08:00)
From:   "KaiLong Wang" <wangkailong@...i.cn>
To:     mark@...heh.com, jlbec@...lplan.org
Cc:     ocfs2-devel@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: [PATCH] ocfs2: Clean up errors in dlmunlock.c

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@...i.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ