[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210927145756.209435-1-trix@redhat.com>
Date: Mon, 27 Sep 2021 07:57:56 -0700
From: trix@...hat.com
To: peterz@...radead.org, mingo@...hat.com, will@...nel.org,
longman@...hat.com, boqun.feng@...il.com, nathan@...nel.org,
ndesaulniers@...gle.com
Cc: linux-kernel@...r.kernel.org, llvm@...ts.linux.dev,
Tom Rix <trix@...hat.com>
Subject: [PATCH] locking/ww_mutex: set ret variable on failure
From: Tom Rix <trix@...hat.com>
Building with clang 13 produces this error
test-ww_mutex.c:138:7: error: variable 'ret' is used
uninitialized whenever 'if' condition is true
[-Werror,-Wsometimes-uninitialized]
if (!ww_mutex_trylock(&mutex, &ctx)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On this failure set ret to -EINVAL as is similarly done
in the function.
Signed-off-by: Tom Rix <trix@...hat.com>
---
kernel/locking/test-ww_mutex.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/locking/test-ww_mutex.c b/kernel/locking/test-ww_mutex.c
index d63ac411f36722..7dbac5dc02efb7 100644
--- a/kernel/locking/test-ww_mutex.c
+++ b/kernel/locking/test-ww_mutex.c
@@ -137,6 +137,7 @@ static int test_aa(bool trylock)
} else {
if (!ww_mutex_trylock(&mutex, &ctx)) {
pr_err("%s: initial trylock failed!\n", __func__);
+ ret = -EINVAL;
goto out;
}
}
--
2.26.3
Powered by blists - more mailing lists