Re: [RFC net-next v3 5/9] net: napi: Add napi_config
From: Joe Damato
Date: Fri Sep 13 2024 - 14:55:45 EST
On Fri, Sep 13, 2024 at 10:42:37AM -0700, Stanislav Fomichev wrote:
> On 09/12, Joe Damato wrote:
[...]
> > @@ -6505,12 +6517,13 @@ static void napi_hash_add(struct napi_struct *napi)
> > if (unlikely(++napi_gen_id < MIN_NAPI_ID))
> > napi_gen_id = MIN_NAPI_ID;
> > } while (napi_by_id(napi_gen_id));
>
> [..]
>
> > - napi->napi_id = napi_gen_id;
> > -
> > - hlist_add_head_rcu(&napi->napi_hash_node,
> > - &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
> >
> > spin_unlock(&napi_hash_lock);
> > +
> > + napi_hash_add_with_id(napi, napi_gen_id);
>
> nit: it is very unlikely that napi_gen_id is gonna wrap around after the
> spin_unlock above, but maybe it's safer to have the following?
>
> static void __napi_hash_add_with_id(struct napi_struct *napi, unsigned int napi_id)
> {
> napi->napi_id = napi_id;
> hlist_add_head_rcu(&napi->napi_hash_node,
> &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
> }
>
> static void napi_hash_add_with_id(struct napi_struct *napi, unsigned int napi_id)
> {
> spin_lock(&napi_hash_lock);
> __napi_hash_add_with_id(...);
> spin_unlock(&napi_hash_lock);
> }
>
> And use __napi_hash_add_with_id here before spin_unlock?
Thanks for taking a look.
Sure, that seems reasonable. I can add that for the rfcv4.
I'll probably hold off on posting the rfcv4 until either after LPC
and/or after I have some time to debug the mlx5/page_pool thing.