[<prev] [next>] [day] [month] [year] [list]
Message-ID: <aR36kCfmRhEIRm2r@stanley.mountain>
Date: Wed, 19 Nov 2025 20:12:48 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: Steven Rostedt <rostedt@...dmis.org>
Cc: Josh Poimboeuf <jpoimboe@...nel.org>, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: [PATCH v2] unwind: Fix signedness bug in unwind_deferred_request()
The "bit" value comes from "work->bit". It is set to -1 if we cancel
the work in unwind_deferred_cancel(). It needs to be signed because
we check for negative values. Change the type from unsigned long to int.
Fixes: 357eda2d7450 ("unwind deferred: Use SRCU unwind_deferred_task_work()")
Signed-off-by: Dan Carpenter <dan.carpenter@...aro.org>
---
v2: fix style issue
kernel/unwind/deferred.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/unwind/deferred.c b/kernel/unwind/deferred.c
index a88fb481c4a3..3dda585963d5 100644
--- a/kernel/unwind/deferred.c
+++ b/kernel/unwind/deferred.c
@@ -232,7 +232,7 @@ int unwind_deferred_request(struct unwind_work *work, u64 *cookie)
struct unwind_task_info *info = ¤t->unwind_info;
int twa_mode = TWA_RESUME;
unsigned long old, bits;
- unsigned long bit;
+ int bit;
int ret;
*cookie = 0;
--
2.51.0
Powered by blists - more mailing lists