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 DE459C433EF for ; Sun, 10 Oct 2021 12:43:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C369C60ED4 for ; Sun, 10 Oct 2021 12:43:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232558AbhJJMpA (ORCPT ); Sun, 10 Oct 2021 08:45:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:46546 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232560AbhJJMou (ORCPT ); Sun, 10 Oct 2021 08:44:50 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id B05F460ED4; Sun, 10 Oct 2021 12:42:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1633869771; bh=O7+5G/8cFVwXN7V725JU1cD+Zpxq8xjRo6+pVgVOhVw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jKz0pNq6Q5iZWuMfYjmKpkYC6U1u8MqDXXtyM2G3UYzLsZwYdHxjqBCt73FHxQjxl fwduLn+5AolNU04rqGAYFqA9hryGjofjrwdLF4l8JlE3lM1KUw7iRNiM8KYAv5xwoe dlbU/oPC2mMgXrqGbHG/3AzeBdfnZZptl/mL78EU= Date: Sun, 10 Oct 2021 14:42:48 +0200 From: Greg Kroah-Hartman To: Alex Deucher Cc: Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , Alex Deucher , "Pan, Xinhui" , David Airlie , Daniel Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Mauro Carvalho Chehab , Arnd Bergmann , DRI mailing list , LKML Subject: Re: [PATCH] dma-buf: move dma-buf symbols into the DMA_BUF module namespace Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 27, 2021 at 11:00:14AM -0400, Alex Deucher wrote: > On Mon, Sep 27, 2021 at 7:15 AM Sumit Semwal wrote: > > > > Hello Greg, > > > > Thanks for the patch! > > > > On Sat, 25 Sept 2021 at 19:17, 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: Sumit Semwal > >> Cc: "Christian König" > >> Cc: Alex Deucher > >> Cc: "Pan, Xinhui" > >> Cc: David Airlie > >> Cc: Daniel Vetter > >> Cc: Maarten Lankhorst > >> Cc: Maxime Ripard > >> Cc: Thomas Zimmermann > >> Cc: Mauro Carvalho Chehab > >> Cc: Arnd Bergmann > >> Cc: dri-devel@lists.freedesktop.org > >> Signed-off-by: Greg Kroah-Hartman > > > > > > With the addition of the 2 misses found by Arnd, please feel free to add my > > Acked-by: Sumit Semwal > > Same here. > > Acked-by: Alex Deucher Thanks both of you for your acks. greg k-h