From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Horman Subject: [PATCH nf-next 2/4] ipvs: Consistently use array_size() in ip_vs_conn_init() Date: Mon, 10 Apr 2023 11:42:36 +0200 Message-ID: <20230409-ipvs-cleanup-v1-2-98cdc242feb0@kernel.org> References: <20230409-ipvs-cleanup-v1-0-98cdc242feb0@kernel.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681119777; bh=6m5PiOkagnIAlt7Cy5yE3jV1Nce7jFt6TO8B1ewEaws=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=b0tisPuid0mXwdWES0cf7hBLAnWkYc0j15tv31gt7jPGz2gUA3LllrL1gcMbnJBa/ 1FJGdCJdBgiPSMWv4uIvhuruYpjI34ihVqzrUeNNwRJ3hf1m+p7qYtEJ8322hY9PfR d649F/WYj4Bgtxw8vtUqEjx4kZ7zFT3TaTRa++od2xNYqtNttEaTQsUbsoVPChldh8 dQv45edlPEOcA01zRZ92ZNe4dEuiLG0EJdjw4g6u003mHYMfPluGbn1G0Z+THLV9jc duPACRtZLWz1Es1tt0CiQKNqkwUhkaLr0UGgdZv7tDTuP5JUGWo/7n7I7kV1KGDzxT O4BpjEHF/jWNw== In-Reply-To: <20230409-ipvs-cleanup-v1-0-98cdc242feb0@kernel.org> List-ID: Content-Type: text/plain; charset="us-ascii" To: Julian Anastasov Cc: Pablo Neira Ayuso , Jozsef Kadlecsik , Florian Westphal , netdev@vger.kernel.org, "David S. Miller" , David Ahern , Eric Dumazet , Jakub Kicinski , Paolo Abeni , lvs-devel@vger.kernel.org, linux-kernel@vger.kernel.org, netfilter-devel@vger.kernel.org, coreteam@netfilter.org Consistently use array_size() to calculate the size of ip_vs_conn_tab in bytes. Flagged by Coccinelle: WARNING: array_size is already used (line 1498) to compute the same size No functional change intended. Compile tested only. Signed-off-by: Simon Horman --- net/netfilter/ipvs/ip_vs_conn.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net/netfilter/ipvs/ip_vs_conn.c b/net/netfilter/ipvs/ip_vs_conn.c index 13534e02346c..da0d8b42d5a3 100644 --- a/net/netfilter/ipvs/ip_vs_conn.c +++ b/net/netfilter/ipvs/ip_vs_conn.c @@ -1481,6 +1481,7 @@ void __net_exit ip_vs_conn_net_cleanup(struct netns_ipvs *ipvs) int __init ip_vs_conn_init(void) { + size_t tab_array_size; int idx; /* Compute size and mask */ @@ -1494,8 +1495,9 @@ int __init ip_vs_conn_init(void) /* * Allocate the connection hash table and initialize its list heads */ - ip_vs_conn_tab = vmalloc(array_size(ip_vs_conn_tab_size, - sizeof(*ip_vs_conn_tab))); + tab_array_size = array_size(ip_vs_conn_tab_size, + sizeof(*ip_vs_conn_tab)); + ip_vs_conn_tab = vmalloc(tab_array_size); if (!ip_vs_conn_tab) return -ENOMEM; @@ -1508,10 +1510,8 @@ int __init ip_vs_conn_init(void) return -ENOMEM; } - pr_info("Connection hash table configured " - "(size=%d, memory=%ldKbytes)\n", - ip_vs_conn_tab_size, - (long)(ip_vs_conn_tab_size*sizeof(*ip_vs_conn_tab))/1024); + pr_info("Connection hash table configured (size=%d, memory=%zdKbytes)\n", + ip_vs_conn_tab_size, tab_array_size); IP_VS_DBG(0, "Each connection entry needs %zd bytes at least\n", sizeof(struct ip_vs_conn)); -- 2.30.2