All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux-next] tools/net: Use bitwise instead of arithmetic operator for flags
@ 2021-08-20  3:35 CGEL
  2021-08-20 14:00 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: CGEL @ 2021-08-20  3:35 UTC (permalink / raw)
  To: David S . Miller
  Cc: Jakub Kicinski, Shuah Khan, netdev, linux-kselftest,
	linux-kernel, jing yangyang, Zeal Robot

From: jing yangyang <jing.yangyang@zte.com.cn>

This silences the following coccinelle warning:

"WARNING: sum of probable bitmasks, consider |"

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: jing yangyang <jing.yangyang@zte.com.cn>
---
 tools/testing/selftests/net/psock_fanout.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/net/psock_fanout.c b/tools/testing/selftests/net/psock_fanout.c
index db45213..3653d64 100644
--- a/tools/testing/selftests/net/psock_fanout.c
+++ b/tools/testing/selftests/net/psock_fanout.c
@@ -111,8 +111,8 @@ static int sock_fanout_open(uint16_t typeflags, uint16_t group_id)
 static void sock_fanout_set_cbpf(int fd)
 {
 	struct sock_filter bpf_filter[] = {
-		BPF_STMT(BPF_LD+BPF_B+BPF_ABS, 80),	      /* ldb [80] */
-		BPF_STMT(BPF_RET+BPF_A, 0),		      /* ret A */
+		BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 80),	      /* ldb [80] */
+		BPF_STMT(BPF_RET | BPF_A, 0),		      /* ret A */
 	};
 	struct sock_fprog bpf_prog;
 
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH linux-next] tools/net: Use bitwise instead of arithmetic operator for flags
  2021-08-20  3:35 [PATCH linux-next] tools/net: Use bitwise instead of arithmetic operator for flags CGEL
@ 2021-08-20 14:00 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-08-20 14:00 UTC (permalink / raw)
  To: jing yangyang
  Cc: davem, kuba, shuah, netdev, linux-kselftest, linux-kernel,
	jing.yangyang, zealci

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Thu, 19 Aug 2021 20:35:27 -0700 you wrote:
> From: jing yangyang <jing.yangyang@zte.com.cn>
> 
> This silences the following coccinelle warning:
> 
> "WARNING: sum of probable bitmasks, consider |"
> 
> Reported-by: Zeal Robot <zealci@zte.com.cn>
> Signed-off-by: jing yangyang <jing.yangyang@zte.com.cn>
> 
> [...]

Here is the summary with links:
  - [linux-next] tools/net: Use bitwise instead of arithmetic operator for flags
    https://git.kernel.org/netdev/net-next/c/fa16ee77364f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-20 14:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-20  3:35 [PATCH linux-next] tools/net: Use bitwise instead of arithmetic operator for flags CGEL
2021-08-20 14:00 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.