diff options
author | Rafael Passos <rafael@rcpassos.me> | 2024-06-15 04:24:10 +0200 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-06-21 04:50:26 +0200 |
commit | 21ab4980e02d495174bc64c00ceb4d3cf87fadb1 (patch) | |
tree | 008909b701e35b7a7c65c468684f2e7ca18235fe /kernel/bpf | |
parent | bpf: remove unused parameter in __bpf_free_used_btfs (diff) | |
download | linux-21ab4980e02d495174bc64c00ceb4d3cf87fadb1.tar.xz linux-21ab4980e02d495174bc64c00ceb4d3cf87fadb1.zip |
bpf: remove redeclaration of new_n in bpf_verifier_vlog
This new_n is defined in the start of this function.
Its value is overwritten by `new_n = min(n, log->len_total);`
a couple lines before my change,
rendering the shadow declaration unnecessary.
Signed-off-by: Rafael Passos <rafael@rcpassos.me>
Link: https://lore.kernel.org/r/20240615022641.210320-4-rafael@rcpassos.me
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'kernel/bpf')
-rw-r--r-- | kernel/bpf/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/log.c b/kernel/bpf/log.c index 3f4ae92e549f..5aebfc3051e3 100644 --- a/kernel/bpf/log.c +++ b/kernel/bpf/log.c @@ -91,7 +91,7 @@ void bpf_verifier_vlog(struct bpf_verifier_log *log, const char *fmt, goto fail; } else { u64 new_end, new_start; - u32 buf_start, buf_end, new_n; + u32 buf_start, buf_end; new_end = log->end_pos + n; if (new_end - log->start_pos >= log->len_total) |