[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1513941084-11828-1-git-send-email-julian.geus@fau.de>
Date: Fri, 22 Dec 2017 12:11:24 +0100
From: Julian Geus <julian.geus@....de>
To: oleg.drokin@...el.com
Cc: andreas.dilger@...el.com, jsimmons@...radead.org,
gregkh@...uxfoundation.org, neilb@...e.com, koskisoft@...il.com,
aastha.gupta4104@...il.com, andriy.skulysh@...gate.com,
bcodding@...hat.com, lustre-devel@...ts.lustre.org,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
linux-kernel@...cs.fau.de, Julian Geus <julian.geus@....de>,
Kilian Bender <kilian.bender.kernel@...il.com>
Subject: [PATCH] Changed misspelled variable name
The misspelled variable name 'splitted' was changed into 'split'.
Signed-off-by: Julian Geus <julian.geus@....de>
Signed-off-by: Kilian Bender <kilian.bender.kernel@...il.com>
---
drivers/staging/lustre/lustre/ldlm/ldlm_flock.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_flock.c b/drivers/staging/lustre/lustre/ldlm/ldlm_flock.c
index 657ab95..782d8da 100644
--- a/drivers/staging/lustre/lustre/ldlm/ldlm_flock.c
+++ b/drivers/staging/lustre/lustre/ldlm/ldlm_flock.c
@@ -121,7 +121,7 @@ static int ldlm_process_flock_lock(struct ldlm_lock *req)
struct ldlm_lock *new2 = NULL;
enum ldlm_mode mode = req->l_req_mode;
int added = (mode == LCK_NL);
- int splitted = 0;
+ int split = 0;
const struct ldlm_callback_suite null_cbs = { };
CDEBUG(D_DLMTRACE,
@@ -249,7 +249,7 @@ static int ldlm_process_flock_lock(struct ldlm_lock *req)
goto reprocess;
}
- splitted = 1;
+ split = 1;
new2->l_granted_mode = lock->l_granted_mode;
new2->l_policy_data.l_flock.pid =
@@ -282,7 +282,7 @@ static int ldlm_process_flock_lock(struct ldlm_lock *req)
}
/* if new2 is created but never used, destroy it*/
- if (splitted == 0 && new2)
+ if (split == 0 && new2)
ldlm_lock_destroy_nolock(new2);
/* At this point we're granting the lock request. */
--
2.7.4
Powered by blists - more mailing lists