Use proper `*hstate` to print unexpected hprobe state. And drop unused
local `state` variable.

Reported-by: kernel test robot <l...@intel.com>
Reported-by: Dan Carpenter <dan.carpen...@linaro.org>
Closes: https://lore.kernel.org/r/202410302020.1jhblfss-...@intel.com/
Fixes: 72a27524a493 ("uprobes: SRCU-protect uretprobe lifetime (with timeout)")
Signed-off-by: Andrii Nakryiko <and...@kernel.org>
---
 kernel/events/uprobes.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c
index 998a9726b80f..f2beb4b3f5c5 100644
--- a/kernel/events/uprobes.c
+++ b/kernel/events/uprobes.c
@@ -704,8 +704,6 @@ static void hprobe_init_stable(struct hprobe *hprobe, 
struct uprobe *uprobe)
  */
 static inline struct uprobe *hprobe_consume(struct hprobe *hprobe, enum 
hprobe_state *hstate)
 {
-       enum hprobe_state state;
-
        *hstate = xchg(&hprobe->state, HPROBE_CONSUMED);
        switch (*hstate) {
        case HPROBE_LEASED:
@@ -715,7 +713,7 @@ static inline struct uprobe *hprobe_consume(struct hprobe 
*hprobe, enum hprobe_s
        case HPROBE_CONSUMED:   /* uprobe was finalized already, do nothing */
                return NULL;
        default:
-               WARN(1, "hprobe invalid state %d", state);
+               WARN(1, "hprobe invalid state %d", *hstate);
                return NULL;
        }
 }
-- 
2.43.5


Reply via email to