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=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham 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 8D844C10F25 for ; Fri, 6 Mar 2020 10:57:45 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 515C520726 for ; Fri, 6 Mar 2020 10:57:45 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 515C520726 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=perches.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id CBE776ECD1; Fri, 6 Mar 2020 10:57:44 +0000 (UTC) Received: from smtprelay.hostedemail.com (smtprelay0055.hostedemail.com [216.40.44.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id BB5856ECD1 for ; Fri, 6 Mar 2020 10:57:43 +0000 (UTC) Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay03.hostedemail.com (Postfix) with ESMTP id 9675D837F27E; Fri, 6 Mar 2020 10:57:42 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: mom04_25fb8bd6a1122 X-Filterd-Recvd-Size: 3105 Received: from XPS-9350.home (unknown [47.151.143.254]) (Authenticated sender: joe@perches.com) by omf01.hostedemail.com (Postfix) with ESMTPA; Fri, 6 Mar 2020 10:57:40 +0000 (UTC) Message-ID: <155f99baffe11836fc9d794ff297bdcee7831050.camel@perches.com> Subject: Re: [Intel-gfx] [PATCH] MAINTAINERS: adjust to reservation.h renaming From: Joe Perches To: Daniel Vetter , Christian =?ISO-8859-1?Q?K=F6nig?= Date: Fri, 06 Mar 2020 02:56:06 -0800 In-Reply-To: <20200306103946.GT2363188@phenom.ffwll.local> References: <20200304120711.12117-1-lukas.bulwahn@gmail.com> <20200306103946.GT2363188@phenom.ffwll.local> User-Agent: Evolution 3.34.1-2 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx@lists.freedesktop.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Lukas Bulwahn , Sebastian Duda , linux-media@vger.kernel.org Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Fri, 2020-03-06 at 11:39 +0100, Daniel Vetter wrote: > On Wed, Mar 04, 2020 at 01:08:32PM +0100, Christian K=F6nig wrote: > > Am 04.03.20 um 13:07 schrieb Lukas Bulwahn: > > > Commit 52791eeec1d9 ("dma-buf: rename reservation_object to dma_resv") > > > renamed include/linux/reservation.h to include/linux/dma-resv.h, but > > > missed the reference in the MAINTAINERS entry. > > > = > > > Since then, ./scripts/get_maintainer.pl --self-test complains: > > > = > > > warning: no file matches F: include/linux/reservation.h > > > = > > > Adjust the DMA BUFFER SHARING FRAMEWORK entry in MAINTAINERS. > > > = > > > Co-developed-by: Sebastian Duda > > > Signed-off-by: Sebastian Duda > > > Signed-off-by: Lukas Bulwahn > > = > > Reviewed-by: Christian K=F6nig > = > You'll push this too? > -Daniel > = > > > --- > > > Christian, please pick this patch. > > > applies cleanly on current master and next-20200303 > > > = > > > MAINTAINERS | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > = > > > diff --git a/MAINTAINERS b/MAINTAINERS > > > index 6158a143a13e..3d6cb2789c9e 100644 > > > --- a/MAINTAINERS > > > +++ b/MAINTAINERS > > > @@ -5022,7 +5022,7 @@ L: dri-devel@lists.freedesktop.org > > > L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) > > > F: drivers/dma-buf/ > > > F: include/linux/dma-buf* > > > -F: include/linux/reservation.h > > > +F: include/linux/dma-resv.h > > > F: include/linux/*fence.h > > > F: Documentation/driver-api/dma-buf.rst > > > K: dma_(buf|fence|resv) Slightly unrelated: The K: entry matches a lot of other things and may have a lot of false positive matches like any variable named dma_buffer This should also use (?:...) to avoid a perl capture group. Perhaps: K: '\bdma_(?:buf|fence|resv)\b' _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel