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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3866DC433FE for ; Mon, 25 Oct 2021 10:37:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 140BD61073 for ; Mon, 25 Oct 2021 10:37:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232892AbhJYKjX (ORCPT ); Mon, 25 Oct 2021 06:39:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:60702 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230231AbhJYKjV (ORCPT ); Mon, 25 Oct 2021 06:39:21 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 830AE61073; Mon, 25 Oct 2021 10:36:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1635158218; bh=/lbtMJGnAzJmGzzqeIS0JbaBPvwFTXO7FSkV6cdmOik=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=McbOZC4g1Y+GVHZxJnABiZtutL1Xnv7LoYgCZCQt8Lh5VIjChzuMxDRbp3GbBPz2x 7DD8o/NGPtChMoj9FIFp/KUuP9R7SHIEUyK+VZsVUMqp8Zq2aJQ1okSLsTUziI1Bw4 CXiQrJypbtEsVkscro3PFVsqEHc6FJRqgQHH7JYQ= Date: Mon, 25 Oct 2021 12:36:55 +0200 From: Greg Kroah-Hartman To: Sumit Semwal , christian.koenig@amd.com, Alex Deucher , David Airlie , Daniel Vetter , Xinhui.Pan@amd.com Cc: linux-kernel@vger.kernel.org, Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Mauro Carvalho Chehab , dri-devel@lists.freedesktop.org, Daniel Vetter , Arnd Bergmann Subject: Re: [PATCH v2] dma-buf: move dma-buf symbols into the DMA_BUF module namespace Message-ID: References: <20211010124628.17691-1-gregkh@linuxfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20211010124628.17691-1-gregkh@linuxfoundation.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Oct 10, 2021 at 02:46:28PM +0200, Greg Kroah-Hartman wrote: > In order to better track where in the kernel the dma-buf code is used, > put the symbols in the namespace DMA_BUF and modify all users of the > symbols to properly import the namespace to not break the build at the > same time. > > Now the output of modinfo shows the use of these symbols, making it > easier to watch for users over time: > > $ modinfo drivers/misc/fastrpc.ko | grep import > import_ns: DMA_BUF > > Cc: "Pan, Xinhui" > Cc: David Airlie > Cc: Maarten Lankhorst > Cc: Maxime Ripard > Cc: Thomas Zimmermann > Cc: Mauro Carvalho Chehab > Cc: dri-devel@lists.freedesktop.org > Acked-by: Daniel Vetter > Acked-by: Christian König > Acked-by: Arnd Bergmann > Acked-by: Sumit Semwal > Acked-by: Alex Deucher > Signed-off-by: Greg Kroah-Hartman > --- > v2: added lots of acks > added 2 more drivers that needed the change, as found by Arnd Ping? Any ideas on what needs to happen to get this into the tree? Or can I take it through my char-misc tree? I seem to have a bunch of acks on it by the respective maintainers... thanks, greg k-h