netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next][resend v1 1/1] netlink: Don't use int as bool in netlink_update_socket_mc()
@ 2023-07-10 10:06 Andy Shevchenko
  2023-07-11  6:33 ` Leon Romanovsky
  2023-07-12  0:43 ` Jakub Kicinski
  0 siblings, 2 replies; 11+ messages in thread
From: Andy Shevchenko @ 2023-07-10 10:06 UTC (permalink / raw)
  To: Jakub Kicinski, netdev, linux-kernel
  Cc: David S. Miller, Eric Dumazet, Paolo Abeni, Andy Shevchenko

The bit operations take boolean parameter and return also boolean
(in test_bit()-like cases). Don't threat booleans as integers when
it's not needed.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 net/netlink/af_netlink.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 383631873748..d81e7a43944c 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -1623,9 +1623,10 @@ EXPORT_SYMBOL(netlink_set_err);
 /* must be called with netlink table grabbed */
 static void netlink_update_socket_mc(struct netlink_sock *nlk,
 				     unsigned int group,
-				     int is_new)
+				     bool new)
 {
-	int old, new = !!is_new, subscriptions;
+	int subscriptions;
+	bool old;
 
 	old = test_bit(group - 1, nlk->groups);
 	subscriptions = nlk->subscriptions - old + new;
@@ -2152,7 +2153,7 @@ void __netlink_clear_multicast_users(struct sock *ksk, unsigned int group)
 	struct netlink_table *tbl = &nl_table[ksk->sk_protocol];
 
 	sk_for_each_bound(sk, &tbl->mc_list)
-		netlink_update_socket_mc(nlk_sk(sk), group, 0);
+		netlink_update_socket_mc(nlk_sk(sk), group, false);
 }
 
 struct nlmsghdr *
-- 
2.40.0.1.gaa8946217a0b


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

end of thread, other threads:[~2023-07-12  0:43 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-10 10:06 [PATCH net-next][resend v1 1/1] netlink: Don't use int as bool in netlink_update_socket_mc() Andy Shevchenko
2023-07-11  6:33 ` Leon Romanovsky
2023-07-11 10:21   ` Paolo Abeni
2023-07-11 10:54     ` Andy Shevchenko
2023-07-11 12:20       ` Leon Romanovsky
2023-07-11 12:45         ` Andy Shevchenko
2023-07-11 13:32           ` Leon Romanovsky
2023-07-11 13:44             ` Andy Shevchenko
2023-07-11 17:10               ` Leon Romanovsky
2023-07-11 17:19                 ` Andy Shevchenko
2023-07-12  0:43 ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).