tipc: use min() to simplify the code
authorLi Zetao <lizetao1@huawei.com>
Thu, 22 Aug 2024 13:39:07 +0000 (21:39 +0800)
committerJakub Kicinski <kuba@kernel.org>
Mon, 26 Aug 2024 16:48:53 +0000 (09:48 -0700)
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 <lizetao1@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20240822133908.1042240-8-lizetao1@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/tipc/monitor.c

index 77a3d016cadec1b1c7418dcf7b57e80c08168ce7..e2f19627e43d525fbfc01543cf8b00bc1f6ac563 100644 (file)
@@ -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)