* [PATCH] ipvs: Use flexible array for MH lookup table
@ 2026-05-19 1:55 Rosen Penev
2026-05-19 17:08 ` Julian Anastasov
0 siblings, 1 reply; 2+ messages in thread
From: Rosen Penev @ 2026-05-19 1:55 UTC (permalink / raw)
To: netfilter-devel
Cc: Simon Horman, Julian Anastasov, Pablo Neira Ayuso,
Florian Westphal, Phil Sutter, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, open list:IPVS, open list:IPVS,
open list:NETFILTER, open list
Store the Maglev hash lookup table in the scheduler state
allocation instead of allocating it separately.
This keeps the lookup table tied to the RCU-freed state lifetime and
simplifies the allocation and cleanup paths.
Assisted-by: Codex:GPT-5.5
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
net/netfilter/ipvs/ip_vs_mh.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/net/netfilter/ipvs/ip_vs_mh.c b/net/netfilter/ipvs/ip_vs_mh.c
index 020863047562..d31d3c6d4216 100644
--- a/net/netfilter/ipvs/ip_vs_mh.c
+++ b/net/netfilter/ipvs/ip_vs_mh.c
@@ -59,11 +59,11 @@ static int primes[] = {251, 509, 1021, 2039, 4093,
struct ip_vs_mh_state {
struct rcu_head rcu_head;
- struct ip_vs_mh_lookup *lookup;
struct ip_vs_mh_dest_setup *dest_setup;
hsiphash_key_t hash1, hash2;
int gcd;
int rshift;
+ struct ip_vs_mh_lookup lookup[];
};
static inline void generate_hash_secret(hsiphash_key_t *hash1,
@@ -372,7 +372,6 @@ static void ip_vs_mh_state_free(struct rcu_head *head)
struct ip_vs_mh_state *s;
s = container_of(head, struct ip_vs_mh_state, rcu_head);
- kfree(s->lookup);
kfree(s);
}
@@ -382,16 +381,10 @@ static int ip_vs_mh_init_svc(struct ip_vs_service *svc)
struct ip_vs_mh_state *s;
/* Allocate the MH table for this service */
- s = kzalloc_obj(*s);
+ s = kzalloc_flex(*s, lookup, IP_VS_MH_TAB_SIZE);
if (!s)
return -ENOMEM;
- s->lookup = kzalloc_objs(struct ip_vs_mh_lookup, IP_VS_MH_TAB_SIZE);
- if (!s->lookup) {
- kfree(s);
- return -ENOMEM;
- }
-
generate_hash_secret(&s->hash1, &s->hash2);
s->gcd = ip_vs_mh_gcd_weight(svc);
s->rshift = ip_vs_mh_shift_weight(svc, s->gcd);
--
2.54.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] ipvs: Use flexible array for MH lookup table
2026-05-19 1:55 [PATCH] ipvs: Use flexible array for MH lookup table Rosen Penev
@ 2026-05-19 17:08 ` Julian Anastasov
0 siblings, 0 replies; 2+ messages in thread
From: Julian Anastasov @ 2026-05-19 17:08 UTC (permalink / raw)
To: Rosen Penev
Cc: netfilter-devel, Simon Horman, Pablo Neira Ayuso,
Florian Westphal, Phil Sutter, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, open list:IPVS, open list:IPVS,
open list:NETFILTER, open list
Hello,
On Mon, 18 May 2026, Rosen Penev wrote:
> Store the Maglev hash lookup table in the scheduler state
> allocation instead of allocating it separately.
>
> This keeps the lookup table tied to the RCU-freed state lifetime and
> simplifies the allocation and cleanup paths.
>
> Assisted-by: Codex:GPT-5.5
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
> ---
> net/netfilter/ipvs/ip_vs_mh.c | 11 ++---------
> 1 file changed, 2 insertions(+), 9 deletions(-)
>
> diff --git a/net/netfilter/ipvs/ip_vs_mh.c b/net/netfilter/ipvs/ip_vs_mh.c
> index 020863047562..d31d3c6d4216 100644
> --- a/net/netfilter/ipvs/ip_vs_mh.c
> +++ b/net/netfilter/ipvs/ip_vs_mh.c
> @@ -59,11 +59,11 @@ static int primes[] = {251, 509, 1021, 2039, 4093,
>
> struct ip_vs_mh_state {
> struct rcu_head rcu_head;
> - struct ip_vs_mh_lookup *lookup;
> struct ip_vs_mh_dest_setup *dest_setup;
> hsiphash_key_t hash1, hash2;
> int gcd;
> int rshift;
> + struct ip_vs_mh_lookup lookup[];
> };
>
> static inline void generate_hash_secret(hsiphash_key_t *hash1,
> @@ -372,7 +372,6 @@ static void ip_vs_mh_state_free(struct rcu_head *head)
We can even drop this function and replace it with
kfree(s) in ip_vs_mh_init_svc() and with kfree_rcu(s, rcu_head)
in ip_vs_mh_done_svc(), you can see ip_vs_dh.c for reference...
> struct ip_vs_mh_state *s;
>
> s = container_of(head, struct ip_vs_mh_state, rcu_head);
> - kfree(s->lookup);
> kfree(s);
> }
>
> @@ -382,16 +381,10 @@ static int ip_vs_mh_init_svc(struct ip_vs_service *svc)
> struct ip_vs_mh_state *s;
>
> /* Allocate the MH table for this service */
> - s = kzalloc_obj(*s);
> + s = kzalloc_flex(*s, lookup, IP_VS_MH_TAB_SIZE);
> if (!s)
> return -ENOMEM;
>
> - s->lookup = kzalloc_objs(struct ip_vs_mh_lookup, IP_VS_MH_TAB_SIZE);
> - if (!s->lookup) {
> - kfree(s);
> - return -ENOMEM;
> - }
> -
> generate_hash_secret(&s->hash1, &s->hash2);
> s->gcd = ip_vs_mh_gcd_weight(svc);
> s->rshift = ip_vs_mh_shift_weight(svc, s->gcd);
> --
> 2.54.0
Regards
--
Julian Anastasov <ja@ssi.bg>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-05-19 17:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-19 1:55 [PATCH] ipvs: Use flexible array for MH lookup table Rosen Penev
2026-05-19 17:08 ` Julian Anastasov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox