public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: Add lib/percpu* as part of percpu entry
@ 2021-05-11 13:17 Nikolay Borisov
  2021-05-11 13:48 ` Dennis Zhou
  0 siblings, 1 reply; 3+ messages in thread
From: Nikolay Borisov @ 2021-05-11 13:17 UTC (permalink / raw)
  To: linux-kernel; +Cc: dennis, tj, Nikolay Borisov

Without this patch get_maintainers.pl on a patch which modified
lib/percpu_refcount.c produces:

Jens Axboe <axboe@kernel.dk> (commit_signer:2/5=40%)
Ming Lei <ming.lei@redhat.com> (commit_signer:2/5=40%,authored:2/5=40%,added_lines:99/114=87%,removed_lines:34/43=79%)
"Paul E. McKenney" <paulmck@kernel.org> (commit_signer:1/5=20%,authored:1/5=20%,added_lines:9/114=8%,removed_lines:3/43=7%)
Tejun Heo <tj@kernel.org> (commit_signer:1/5=20%)
Andrew Morton <akpm@linux-foundation.org> (commit_signer:1/5=20%)
Nikolay Borisov <nborisov@suse.com> (authored:1/5=20%,removed_lines:3/43=7%)
Joe Perches <joe@perches.com> (authored:1/5=20%,removed_lines:3/43=7%)
linux-kernel@vger.kernel.org (open list)

Whereas with the patch applied it now (properly) prints:

Dennis Zhou <dennis@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
Tejun Heo <tj@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
Christoph Lameter <cl@linux.com> (maintainer:PER-CPU MEMORY ALLOCATOR)
linux-kernel@vger.kernel.org (open list)

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index d92f85ca831d..b18fed606ddd 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -14004,6 +14004,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
 F:	arch/*/include/asm/percpu.h
 F:	include/linux/percpu*.h
+F:	lib/percpu*.c
 F:	mm/percpu*.c
 
 PER-TASK DELAY ACCOUNTING
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] MAINTAINERS: Add lib/percpu* as part of percpu entry
  2021-05-11 13:17 [PATCH] MAINTAINERS: Add lib/percpu* as part of percpu entry Nikolay Borisov
@ 2021-05-11 13:48 ` Dennis Zhou
  2021-05-13  4:48   ` Dennis Zhou
  0 siblings, 1 reply; 3+ messages in thread
From: Dennis Zhou @ 2021-05-11 13:48 UTC (permalink / raw)
  To: Nikolay Borisov; +Cc: linux-kernel, tj

Hello,

On Tue, May 11, 2021 at 04:17:37PM +0300, Nikolay Borisov wrote:
> Without this patch get_maintainers.pl on a patch which modified
> lib/percpu_refcount.c produces:
> 
> Jens Axboe <axboe@kernel.dk> (commit_signer:2/5=40%)
> Ming Lei <ming.lei@redhat.com> (commit_signer:2/5=40%,authored:2/5=40%,added_lines:99/114=87%,removed_lines:34/43=79%)
> "Paul E. McKenney" <paulmck@kernel.org> (commit_signer:1/5=20%,authored:1/5=20%,added_lines:9/114=8%,removed_lines:3/43=7%)
> Tejun Heo <tj@kernel.org> (commit_signer:1/5=20%)
> Andrew Morton <akpm@linux-foundation.org> (commit_signer:1/5=20%)
> Nikolay Borisov <nborisov@suse.com> (authored:1/5=20%,removed_lines:3/43=7%)
> Joe Perches <joe@perches.com> (authored:1/5=20%,removed_lines:3/43=7%)
> linux-kernel@vger.kernel.org (open list)
> 
> Whereas with the patch applied it now (properly) prints:
> 
> Dennis Zhou <dennis@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
> Tejun Heo <tj@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
> Christoph Lameter <cl@linux.com> (maintainer:PER-CPU MEMORY ALLOCATOR)
> linux-kernel@vger.kernel.org (open list)
> 
> Signed-off-by: Nikolay Borisov <nborisov@suse.com>
> ---
>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index d92f85ca831d..b18fed606ddd 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -14004,6 +14004,7 @@ S:	Maintained
>  T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
>  F:	arch/*/include/asm/percpu.h
>  F:	include/linux/percpu*.h
> +F:	lib/percpu*.c
>  F:	mm/percpu*.c
>  
>  PER-TASK DELAY ACCOUNTING
> -- 
> 2.25.1
> 

Yeah, in the past I've taken percpu_ref stuff, so I think this makes
sense. If no one has any objections I'll pick this up and your other
patch.

Thanks,
Dennis

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] MAINTAINERS: Add lib/percpu* as part of percpu entry
  2021-05-11 13:48 ` Dennis Zhou
@ 2021-05-13  4:48   ` Dennis Zhou
  0 siblings, 0 replies; 3+ messages in thread
From: Dennis Zhou @ 2021-05-13  4:48 UTC (permalink / raw)
  To: Nikolay Borisov; +Cc: linux-kernel, tj

On Tue, May 11, 2021 at 01:48:36PM +0000, Dennis Zhou wrote:
> Hello,
> 
> On Tue, May 11, 2021 at 04:17:37PM +0300, Nikolay Borisov wrote:
> > Without this patch get_maintainers.pl on a patch which modified
> > lib/percpu_refcount.c produces:
> > 
> > Jens Axboe <axboe@kernel.dk> (commit_signer:2/5=40%)
> > Ming Lei <ming.lei@redhat.com> (commit_signer:2/5=40%,authored:2/5=40%,added_lines:99/114=87%,removed_lines:34/43=79%)
> > "Paul E. McKenney" <paulmck@kernel.org> (commit_signer:1/5=20%,authored:1/5=20%,added_lines:9/114=8%,removed_lines:3/43=7%)
> > Tejun Heo <tj@kernel.org> (commit_signer:1/5=20%)
> > Andrew Morton <akpm@linux-foundation.org> (commit_signer:1/5=20%)
> > Nikolay Borisov <nborisov@suse.com> (authored:1/5=20%,removed_lines:3/43=7%)
> > Joe Perches <joe@perches.com> (authored:1/5=20%,removed_lines:3/43=7%)
> > linux-kernel@vger.kernel.org (open list)
> > 
> > Whereas with the patch applied it now (properly) prints:
> > 
> > Dennis Zhou <dennis@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
> > Tejun Heo <tj@kernel.org> (maintainer:PER-CPU MEMORY ALLOCATOR)
> > Christoph Lameter <cl@linux.com> (maintainer:PER-CPU MEMORY ALLOCATOR)
> > linux-kernel@vger.kernel.org (open list)
> > 
> > Signed-off-by: Nikolay Borisov <nborisov@suse.com>
> > ---
> >  MAINTAINERS | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index d92f85ca831d..b18fed606ddd 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -14004,6 +14004,7 @@ S:	Maintained
> >  T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
> >  F:	arch/*/include/asm/percpu.h
> >  F:	include/linux/percpu*.h
> > +F:	lib/percpu*.c
> >  F:	mm/percpu*.c
> >  
> >  PER-TASK DELAY ACCOUNTING
> > -- 
> > 2.25.1
> > 
> 
> Yeah, in the past I've taken percpu_ref stuff, so I think this makes
> sense. If no one has any objections I'll pick this up and your other
> patch.
> 
> Thanks,
> Dennis

I've applied this to for-5.13-fixes. I've also updated the mailing list
to linux-mm.

Thanks,
Dennis

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-13  4:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-11 13:17 [PATCH] MAINTAINERS: Add lib/percpu* as part of percpu entry Nikolay Borisov
2021-05-11 13:48 ` Dennis Zhou
2021-05-13  4:48   ` Dennis Zhou

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox