[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210226105746.29240-1-yejune.deng@gmail.com>
Date: Fri, 26 Feb 2021 18:57:46 +0800
From: Yejune Deng <yejune.deng@...il.com>
To: davem@...emloft.net, yoshfuji@...ux-ipv6.org, dsahern@...nel.org,
kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
yejune.deng@...il.com
Subject: [PATCH] inetpeer: use else if instead of if to reduce judgment
In inet_initpeers(), if si.totalram <= (8192*1024)/PAGE_SIZE, it will
be judged three times. Use else if instead of if, it only needs to be
judged once.
Signed-off-by: Yejune Deng <yejune.deng@...il.com>
---
net/ipv4/inetpeer.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c
index ff327a62c9ce..07cd1f8204b3 100644
--- a/net/ipv4/inetpeer.c
+++ b/net/ipv4/inetpeer.c
@@ -81,12 +81,12 @@ void __init inet_initpeers(void)
* <kuznet@....inr.ac.ru>. I don't have any opinion about the values
* myself. --SAW
*/
- if (si.totalram <= (32768*1024)/PAGE_SIZE)
+ if (si.totalram <= (8192 * 1024) / PAGE_SIZE)
+ inet_peer_threshold >>= 4; /* about 128KB */
+ else if (si.totalram <= (16384 * 1024) / PAGE_SIZE)
+ inet_peer_threshold >>= 2; /* about 512KB */
+ else if (si.totalram <= (32768 * 1024) / PAGE_SIZE)
inet_peer_threshold >>= 1; /* max pool size about 1MB on IA32 */
- if (si.totalram <= (16384*1024)/PAGE_SIZE)
- inet_peer_threshold >>= 1; /* about 512KB */
- if (si.totalram <= (8192*1024)/PAGE_SIZE)
- inet_peer_threshold >>= 2; /* about 128KB */
peer_cachep = kmem_cache_create("inet_peer_cache",
sizeof(struct inet_peer),
--
2.29.0
Powered by blists - more mailing lists