public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: Tingwei Zhang <tingweiz@codeaurora•org>
To: Suzuki K Poulose <suzuki.poulose@arm•com>
Cc: tsoni@codeaurora•org, saiprakash.ranjan@codeaurora•org,
	kim.phillips@arm•com, mathieu.poirier@linaro•org,
	alexander.shishkin@linux•intel.com, gregkh@linuxfoundation•org,
	coresight@lists•linaro.org, rdunlap@infradead•org,
	ykaukab@suse•de, linux@armlinux•org.uk, jinlmao@codeaurora•org,
	tingwei@codeaurora•org, leo.yan@linaro•org,
	linux-arm-kernel@lists•infradead.org, mike.leach@linaro•org
Subject: Re: [PATCH v7 11/25] coresight: etb: allow etb to be built as a module
Date: Thu, 6 Aug 2020 19:19:23 +0800	[thread overview]
Message-ID: <20200806111923.GA31216@codeaurora.org> (raw)
In-Reply-To: <02dab16e-521e-ad0e-ebf9-06450c117c98@arm.com>

On Wed, Aug 05, 2020 at 11:43:36PM +0800, Suzuki K Poulose wrote:
> On 08/05/2020 03:54 AM, Tingwei Zhang wrote:
> >From: Kim Phillips <kim.phillips@arm•com>
> >
> >Allow to build coresight-etb10 as a module, for ease of development.
> >
> >- Kconfig becomes a tristate, to allow =m
> >- add an etb_remove function, for module unload
> >- add a MODULE_DEVICE_TABLE for autoloading on boot
> >
> >Cc: Mathieu Poirier <mathieu.poirier@linaro•org>
> >Cc: Leo Yan <leo.yan@linaro•org>
> >Cc: Alexander Shishkin <alexander.shishkin@linux•intel.com>
> >Cc: Randy Dunlap <rdunlap@infradead•org>
> >Cc: Suzuki K Poulose <Suzuki.Poulose@arm•com>
> >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation•org>
> >Cc: Russell King <linux@armlinux•org.uk>
> >Signed-off-by: Kim Phillips <kim.phillips@arm•com>
> >Signed-off-by: Tingwei Zhang <tingwei@codeaurora•org>
> >Tested-by: Mike Leach <mike.leach@linaro•org>
> 
> 
> >---
> >  drivers/hwtracing/coresight/Kconfig           |  5 ++++-
> >  drivers/hwtracing/coresight/coresight-etb10.c | 20 ++++++++++++++++++-
> >  2 files changed, 23 insertions(+), 2 deletions(-)
> >
> >diff --git a/drivers/hwtracing/coresight/Kconfig
> >b/drivers/hwtracing/coresight/Kconfig
> >index d6e107bbd30b..996d84a1edb8 100644
> >--- a/drivers/hwtracing/coresight/Kconfig
> >+++ b/drivers/hwtracing/coresight/Kconfig
> >@@ -57,13 +57,16 @@ config CORESIGHT_SINK_TPIU
> >  	  the on-board coresight memory can handle.
> >
> >  config CORESIGHT_SINK_ETBV10
> >-	bool "Coresight ETBv1.0 driver"
> >+	tristate "Coresight ETBv1.0 driver"
> >  	depends on CORESIGHT_LINKS_AND_SINKS
> >  	help
> >  	  This enables support for the Embedded Trace Buffer version 1.0 driver
> >  	  that complies with the generic implementation of the component
> >without
> >  	  special enhancement or added features.
> >
> >+	  To compile this driver as a module, choose M here: the
> >+	  module will be called coresight-etb10.
> >+
> >  config CORESIGHT_SOURCE_ETM3X
> >  	tristate "CoreSight Embedded Trace Macrocell 3.x driver"
> >  	depends on !ARM64
> >diff --git a/drivers/hwtracing/coresight/coresight-etb10.c
> >b/drivers/hwtracing/coresight/coresight-etb10.c
> >index 04ee9cda988d..b40756497c9a 100644
> >--- a/drivers/hwtracing/coresight/coresight-etb10.c
> >+++ b/drivers/hwtracing/coresight/coresight-etb10.c
> >@@ -801,6 +801,16 @@ static int etb_probe(struct amba_device *adev, const
> >struct amba_id *id)
> >  	return ret;
> >  }
> >
> >+static int __exit etb_remove(struct amba_device *adev)
> >+{
> >+	struct etb_drvdata *drvdata = dev_get_drvdata(&adev->dev);
> >+
> >+	misc_deregister(&drvdata->miscdev);
> >+	coresight_unregister(drvdata->csdev);
> >+
> >+	return 0;
> >+}
> >+
> 
> I am worried about the dangling reference via the misc device to
> the drvdata. Not sure, if we need to grab the reference the module
> for each open fd on the misc device. The misc device infrastructure
> doesn't seem to do any of this implicitly. This is something worth
> checking. I will see if I can trigger this.
>

Misc device is one char device. cdev_get() is called in chrdev_open()
to grab reference of module. Look like we are safe here.

Thanks,
Tingwei

> i.e,
> 
> CPU 0:					CPU1:
> 
> open("/dev/etb")
>   etb_open()
> ...					etb_remove() {
> 						..
> 						coresight_unregister()
> 					}
> 
> 
> read()
>    etb_read()
>      deal with free'd drvdata ?
> 
> 
> Cheers
> Suzuki

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists•infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2020-08-06 12:17 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-05  2:54 [PATCH v7 00/25] coresight: allow to build coresight as modules Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 01/25] coresight: cpu_debug: add module name in Kconfig Tingwei Zhang
2020-08-05  9:46   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 02/25] coresight: cpu_debug: define MODULE_DEVICE_TABLE Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 03/25] coresight: use IS_ENABLED for CONFIGs that may be modules Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 04/25] coresight: add coresight prefix to barrier_pkt Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 05/25] coresight: export global symbols Tingwei Zhang
2020-08-05 11:13   ` Suzuki K Poulose
2020-08-06  1:43     ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 06/25] coresight: add try_get_module() in coresight_grab_device() Tingwei Zhang
2020-08-05 10:55   ` Suzuki K Poulose
2020-08-06  2:43     ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 07/25] coresight: stm: allow to build coresight-stm as a module Tingwei Zhang
2020-08-05 11:00   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 08/25] coresight: etm: perf: Fix warning caused by etm_setup_aux failure Tingwei Zhang
2020-08-05 10:18   ` Suzuki K Poulose
2020-08-06  2:46     ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 09/25] coresight: etm3x: allow etm3x to be built as a module Tingwei Zhang
2020-08-05 11:09   ` Suzuki K Poulose
2020-08-05 12:54     ` Mike Leach
2020-08-05 14:58       ` Suzuki K Poulose
2020-08-06  5:44       ` Sai Prakash Ranjan
2020-08-06 11:43         ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 10/25] coresight: etm4x: allow etm4x " Tingwei Zhang
2020-08-05 11:27   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 11/25] coresight: etb: allow etb " Tingwei Zhang
2020-08-05 15:43   ` Suzuki K Poulose
2020-08-06 11:19     ` Tingwei Zhang [this message]
2020-08-06 14:56       ` Suzuki K Poulose
2020-08-07  1:56         ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 12/25] coresight: tpiu: allow tpiu " Tingwei Zhang
2020-08-05 15:47   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 13/25] coresight: tmc: allow tmc " Tingwei Zhang
2020-08-05 15:49   ` Suzuki K Poulose
2020-08-06 14:58     ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 14/25] coresight: funnel: remove multiple init calls from funnel driver Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 15/25] coresight: replicator: remove multiple init calls Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 16/25] coresight: allow funnel and replicator drivers to be built as modules Tingwei Zhang
2020-08-05 16:04   ` Suzuki K Poulose
2020-08-06  2:55     ` Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 17/25] coresight: cti: add function to register cti associate ops Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 18/25] coresight: cti: Fix remove sysfs link error Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 19/25] coresight: cti: Fix bug clearing sysfs links on callback Tingwei Zhang
2020-08-06 16:21   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 20/25] coresight: cti: don't disable ect device if it's not enabled Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 21/25] coresight: cti: increase reference count when enabling cti Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 22/25] coresight: cti: allow cti to be built as a module Tingwei Zhang
2020-08-05  2:54 ` [PATCH v7 23/25] coresight: tmc-etr: add function to register catu ops Tingwei Zhang
2020-08-05 16:09   ` Suzuki K Poulose
2020-08-05 16:11     ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 24/25] coresight: catu: allow catu drivers to be built as modules Tingwei Zhang
2020-08-05 16:11   ` Suzuki K Poulose
2020-08-05  2:54 ` [PATCH v7 25/25] coresight: allow the coresight core driver to be built as a module Tingwei Zhang
2020-08-05 16:29   ` Suzuki K Poulose
2020-08-06 16:33     ` Suzuki K Poulose
2020-08-06 17:25       ` Robin Murphy
2020-08-06 17:39         ` Robin Murphy
2020-08-06 22:20           ` Suzuki K Poulose
2020-08-05 17:17 ` [PATCH v7 00/25] coresight: allow to build coresight as modules Suzuki K Poulose
2020-08-05 19:39   ` Mike Leach
2020-08-06  3:06   ` Tingwei Zhang
2020-08-06  9:38     ` Mike Leach
2020-08-06 11:23       ` Suzuki K Poulose

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200806111923.GA31216@codeaurora.org \
    --to=tingweiz@codeaurora$(echo .)org \
    --cc=alexander.shishkin@linux$(echo .)intel.com \
    --cc=coresight@lists$(echo .)linaro.org \
    --cc=gregkh@linuxfoundation$(echo .)org \
    --cc=jinlmao@codeaurora$(echo .)org \
    --cc=kim.phillips@arm$(echo .)com \
    --cc=leo.yan@linaro$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux@armlinux$(echo .)org.uk \
    --cc=mathieu.poirier@linaro$(echo .)org \
    --cc=mike.leach@linaro$(echo .)org \
    --cc=rdunlap@infradead$(echo .)org \
    --cc=saiprakash.ranjan@codeaurora$(echo .)org \
    --cc=suzuki.poulose@arm$(echo .)com \
    --cc=tingwei@codeaurora$(echo .)org \
    --cc=tsoni@codeaurora$(echo .)org \
    --cc=ykaukab@suse$(echo .)de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox