From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3B0B9C433E6 for ; Wed, 17 Mar 2021 05:04:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1977564FAE for ; Wed, 17 Mar 2021 05:04:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229508AbhCQFDt (ORCPT ); Wed, 17 Mar 2021 01:03:49 -0400 Received: from smtprelay0039.hostedemail.com ([216.40.44.39]:50062 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S229487AbhCQFD1 (ORCPT ); Wed, 17 Mar 2021 01:03:27 -0400 X-Greylist: delayed 335 seconds by postgrey-1.27 at vger.kernel.org; Wed, 17 Mar 2021 01:03:27 EDT Received: from smtprelay.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by smtpgrave07.hostedemail.com (Postfix) with ESMTP id 685221804DAB5; Wed, 17 Mar 2021 04:57:52 +0000 (UTC) Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay04.hostedemail.com (Postfix) with ESMTP id 66D271807624D; Wed, 17 Mar 2021 04:57:51 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: smoke89_02009a82773b X-Filterd-Recvd-Size: 3821 Received: from [192.168.1.159] (unknown [47.151.137.21]) (Authenticated sender: joe@perches.com) by omf02.hostedemail.com (Postfix) with ESMTPA; Wed, 17 Mar 2021 04:57:47 +0000 (UTC) Message-ID: Subject: Re: [PATCH 13/13] MAINTAINERS: Add entry for the bitmap API From: Joe Perches To: Yury Norov , Andy Shevchenko Cc: linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org, linux-arch@vger.kernel.org, linux-sh@vger.kernel.org, Alexey Klimov , Andrew Morton , Arnd Bergmann , David Sterba , Dennis Zhou , Geert Uytterhoeven , Jianpeng Ma , John Paul Adrian Glaubitz , Josh Poimboeuf , Rasmus Villemoes , Rich Felker , Stefano Brivio , Wei Yang , Wolfram Sang , Yoshinori Sato , Andy Whitcroft , Dwaipayan Ray , Lukas Bulwahn Date: Tue, 16 Mar 2021 21:57:46 -0700 In-Reply-To: <20210317044759.GA2114775@yury-ThinkPad> References: <20210316015424.1999082-1-yury.norov@gmail.com> <20210316015424.1999082-14-yury.norov@gmail.com> <20210317044759.GA2114775@yury-ThinkPad> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.38.1-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org On Tue, 2021-03-16 at 21:47 -0700, Yury Norov wrote: > [CC Andy Whitcroft, Joe Perches, Dwaipayan Ray, Lukas Bulwahn] > > On Tue, Mar 16, 2021 at 01:45:51PM +0200, Andy Shevchenko wrote: > > On Mon, Mar 15, 2021 at 06:54:24PM -0700, Yury Norov wrote: > > > Add myself as maintainer for bitmap API and Andy and Rasmus as reviewers. > > > > > > I'm an author of current implementation of lib/find_bit and an active > > > contributor to lib/bitmap. It was spotted that there's no maintainer for > > > bitmap API. I'm willing to maintain it. > > > > > > Signed-off-by: Yury Norov > > > Acked-by: Andy Shevchenko > > > Acked-by: Rasmus Villemoes > > > --- > > >  MAINTAINERS | 16 ++++++++++++++++ > > >  1 file changed, 16 insertions(+) > > > > > > diff --git a/MAINTAINERS b/MAINTAINERS > > > index 3dd20015696e..44f94cdd5a20 100644 > > > --- a/MAINTAINERS > > > +++ b/MAINTAINERS > > > @@ -3151,6 +3151,22 @@ F: Documentation/filesystems/bfs.rst > > >  F: fs/bfs/ > > >  F: include/uapi/linux/bfs_fs.h > > >   > > > > > > +BITMAP API > > > +M: Yury Norov > > > +R: Andy Shevchenko > > > +R: Rasmus Villemoes > > > +S: Maintained > > > +F: include/asm-generic/bitops/find.h > > > +F: include/linux/bitmap.h > > > +F: lib/bitmap.c > > > +F: lib/find_bit.c > > > > > +F: lib/find_find_bit_benchmark.c > > > > Does this file exist? > > I guess checkpatch.pl nowadays has a MAINTAINER data base validation. > > No lib/find_find_bit_benchmark.c doesn't exist. It's a typo, it should > be lib/find_bit_benchmark.c. Checkpatch doesn't warn: > > yury:linux$ scripts/checkpatch.pl 0013-MAINTAINERS-Add-entry-for-the-bitmap-API.patch > total: 0 errors, 0 warnings, 22 lines checked checkpatch does not validate filenames for each patch. checkpatch does have a --self-test=patterns capability that does validate file accessibility.