From: Vadim Fedorenko <vadim.fedorenko@linux.dev>
To: Hardevsinh Palaniya <hardevsinh.palaniya@siliconsignals.io>,
ast@kernel.org, andrii@kernel.org
Cc: Daniel Borkmann <daniel@iogearbox.net>,
Martin KaFai Lau <martin.lau@linux.dev>,
Eduard Zingerman <eddyz87@gmail.com>, Song Liu <song@kernel.org>,
Yonghong Song <yonghong.song@linux.dev>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@kernel.org>,
Stanislav Fomichev <sdf@fomichev.me>, Hao Luo <haoluo@google.com>,
Jiri Olsa <jolsa@kernel.org>, Shahab Vahedi <list+bpf@vahedi.org>,
Vineet Gupta <vgupta@kernel.org>,
bpf@vger.kernel.org, linux-snps-arc@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ARC: bpf_jit_arcv2: Remove redundant condition check
Date: Mon, 11 Nov 2024 16:21:47 +0000 [thread overview]
Message-ID: <e6d27adb-151c-46c1-9668-1cd2b492321b@linux.dev> (raw)
In-Reply-To: <20241111142028.67708-1-hardevsinh.palaniya@siliconsignals.io>
On 11/11/2024 14:19, Hardevsinh Palaniya wrote:
> The condition 'if (ARC_CC_AL)' is always true, as ARC_CC_AL is a constant
> integer. This makes the check redundant, so it is safe to remove.
>
> Signed-off-by: Hardevsinh Palaniya <hardevsinh.palaniya@siliconsignals.io>
> ---
> arch/arc/net/bpf_jit_arcv2.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/arch/arc/net/bpf_jit_arcv2.c b/arch/arc/net/bpf_jit_arcv2.c
> index 4458e409ca0a..19792ce952be 100644
> --- a/arch/arc/net/bpf_jit_arcv2.c
> +++ b/arch/arc/net/bpf_jit_arcv2.c
> @@ -2916,10 +2916,7 @@ bool check_jmp_32(u32 curr_off, u32 targ_off, u8 cond)
> addendum = (cond == ARC_CC_AL) ? 0 : INSN_len_normal;
> disp = get_displacement(curr_off + addendum, targ_off);
>
> - if (ARC_CC_AL)
> - return is_valid_far_disp(disp);
> - else
> - return is_valid_near_disp(disp);
> + return is_valid_far_disp(disp);
> }
>
> /*
The original code is obviously optimized out, but the intention, I
believe, was to check if the jump is conditional or not.
So the proper fix should change the code to check cond:
- if (ARC_CC_AL)
+ if (cond == ARC_CC_AL)
next prev parent reply other threads:[~2024-11-11 16:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-11 14:19 [PATCH] ARC: bpf_jit_arcv2: Remove redundant condition check Hardevsinh Palaniya
2024-11-11 16:21 ` Vadim Fedorenko [this message]
2024-11-13 2:11 ` Shahab Vahedi
2024-11-13 5:13 ` Hardevsinh Palaniya
2024-11-13 8:03 ` Shahab Vahedi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e6d27adb-151c-46c1-9668-1cd2b492321b@linux.dev \
--to=vadim.fedorenko@linux.dev \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=haoluo@google.com \
--cc=hardevsinh.palaniya@siliconsignals.io \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kpsingh@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-snps-arc@lists.infradead.org \
--cc=list+bpf@vahedi.org \
--cc=martin.lau@linux.dev \
--cc=sdf@fomichev.me \
--cc=song@kernel.org \
--cc=vgupta@kernel.org \
--cc=yonghong.song@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox