From: Martin KaFai Lau Date: Wed, 4 Sep 2024 18:08:45 +0000 (-0700) Subject: bpf: Fix indentation issue in epilogue_idx X-Git-Tag: v6.12-rc1~112^2~46^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=00750788dfc6b5167a294915e2690d8af182c496;p=thirdparty%2Fkernel%2Flinux.git bpf: Fix indentation issue in epilogue_idx There is a report on new indentation issue in epilogue_idx. This patch fixed it. Fixes: 169c31761c8d ("bpf: Add gen_epilogue to bpf_verifier_ops") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202408311622.4GzlzN33-lkp@intel.com/ Signed-off-by: Martin KaFai Lau Link: https://lore.kernel.org/r/20240904180847.56947-3-martin.lau@linux.dev Signed-off-by: Alexei Starovoitov --- diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 8bfb14d1eb7a1..b806afeba212d 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -19800,7 +19800,7 @@ static int convert_ctx_accesses(struct bpf_verifier_env *env) * least one ctx ptr saving insn before the * epilogue. */ - epilogue_idx = i + delta; + epilogue_idx = i + delta; } goto patch_insn_buf; } else {