From: Li Zetao Date: Thu, 22 Aug 2024 13:39:07 +0000 (+0800) Subject: tipc: use min() to simplify the code X-Git-Tag: v6.12-rc1~232^2~184^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a18308623ce303a0f8954294f3877b3ece8c5e7b;p=thirdparty%2Fkernel%2Flinux.git tipc: use min() to simplify the code When calculating size of own domain based on number of peers, the result should be less than MAX_MON_DOMAIN, so using min() here is very semantic. Signed-off-by: Li Zetao Reviewed-by: Simon Horman Link: https://patch.msgid.link/20240822133908.1042240-8-lizetao1@huawei.com Signed-off-by: Jakub Kicinski --- diff --git a/net/tipc/monitor.c b/net/tipc/monitor.c index 77a3d016cadec..e2f19627e43d5 100644 --- a/net/tipc/monitor.c +++ b/net/tipc/monitor.c @@ -149,7 +149,7 @@ static int dom_size(int peers) while ((i * i) < peers) i++; - return i < MAX_MON_DOMAIN ? i : MAX_MON_DOMAIN; + return min(i, MAX_MON_DOMAIN); } static void map_set(u64 *up_map, int i, unsigned int v)