Re: [PATCH bpf-next v2 19/26] bpf: Convert hashtab.c to rqspinlock
From: Kumar Kartikeya Dwivedi
Date: Fri Feb 07 2025 - 22:07:14 EST
On Sat, 8 Feb 2025 at 03:01, Alexei Starovoitov
<alexei.starovoitov@xxxxxxxxx> wrote:
>
> On Thu, Feb 6, 2025 at 2:55 AM Kumar Kartikeya Dwivedi <memxor@xxxxxxxxx> wrote:
> >
> > Convert hashtab.c from raw_spinlock to rqspinlock, and drop the hashed
> > per-cpu counter crud from the code base which is no longer necessary.
> >
> > Signed-off-by: Kumar Kartikeya Dwivedi <memxor@xxxxxxxxx>
> > ---
> > kernel/bpf/hashtab.c | 102 ++++++++++++++-----------------------------
> > 1 file changed, 32 insertions(+), 70 deletions(-)
> >
> > diff --git a/kernel/bpf/hashtab.c b/kernel/bpf/hashtab.c
> > index 4a9eeb7aef85..9b394e147967 100644
> > --- a/kernel/bpf/hashtab.c
> > +++ b/kernel/bpf/hashtab.c
> > @@ -16,6 +16,7 @@
> > #include "bpf_lru_list.h"
> > #include "map_in_map.h"
> > #include <linux/bpf_mem_alloc.h>
> > +#include <asm/rqspinlock.h>
> >
> > #define HTAB_CREATE_FLAG_MASK \
> > (BPF_F_NO_PREALLOC | BPF_F_NO_COMMON_LRU | BPF_F_NUMA_NODE | \
> > @@ -78,7 +79,7 @@
> > */
> > struct bucket {
> > struct hlist_nulls_head head;
> > - raw_spinlock_t raw_lock;
> > + rqspinlock_t raw_lock;
>
> Pls add known syzbot reports as 'Closes:' to commit log.
Ack, I've found [0] and [1], I will dig for more, see which ones this
applies to and add them to the commit log.
[0]: https://lore.kernel.org/bpf/CAPPBnEZpjGnsuA26Mf9kYibSaGLm=oF6=12L21X1GEQdqjLnzQ@xxxxxxxxxxxxxx/
[1]: https://lore.kernel.org/bpf/CAADnVQJVJADKw0KC6GzhSOjA8DJFammARKwVh+TeNAD7U3h91A@xxxxxxxxxxxxxx/