Re: [patch V2 m@/6] perf/core: Split out mlock limit handling

From: Peter Zijlstra
Date: Mon Aug 11 2025 - 10:43:35 EST


On Mon, Aug 11, 2025 at 02:42:58PM +0200, Thomas Gleixner wrote:

> > Does this not also need this? I found this stray user_extra when I
> > eventually removed the local user_extra variable.
> >
> >
> > --- a/kernel/events/core.c
> > +++ b/kernel/events/core.c
> > @@ -6997,8 +6997,6 @@ static int perf_mmap(struct file *file,
> > if (vma_size != PAGE_SIZE * nr_pages)
> > return -EINVAL;
> >
> > - user_extra = nr_pages;
> > -
> > mutex_lock(&event->mmap_mutex);
> > ret = -EINVAL;
> >
>
> No. That's how user_extra is initialized in the first place.
>
> To remove that nr_pages must become an argument to that function.

Ah, I see. Let me go fix that.