From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752685AbdCNTco (ORCPT ); Tue, 14 Mar 2017 15:32:44 -0400 Received: from mail-lf0-f53.google.com ([209.85.215.53]:33472 "EHLO mail-lf0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751823AbdCNTcn (ORCPT ); Tue, 14 Mar 2017 15:32:43 -0400 MIME-Version: 1.0 In-Reply-To: References: <1489073232-5093-3-git-send-email-suzuki.poulose@arm.com> From: Mathieu Poirier Date: Tue, 14 Mar 2017 13:32:40 -0600 Message-ID: Subject: Re: [2/2] coresight: Fix reference count for software sources To: Suzuki K Poulose Cc: "linux-arm-kernel@lists.infradead.org" , Chunyan Zhang , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 14 March 2017 at 11:55, Suzuki K Poulose wrote: > On 14/03/17 17:40, Mathieu Poirier wrote: >> >> On 14 March 2017 at 11:32, Mathieu Poirier >> wrote: >>> >>> From: "Suzuki K. Poulose" >>> >>> For software sources (i.e STM), there could be multiple agents >>> generating the trace data, unlike the ETMs. So we need to >>> properly do the accounting for the active number of users >>> to disable the device when the last user goes away. Right >>> now, the reference counting is broken for sources as we skip >>> the actions when we detect that the source is enabled. >>> >>> This patch fixes the problem by adding the refcounting for >>> software sources, even when they are enabled. >>> >>> Cc: Mathieu Poirier >>> Reported-by: Robert Walker >>> Signed-off-by: Suzuki K Poulose >>> --- >>> drivers/hwtracing/coresight/coresight.c | 13 +++++++++++-- >>> 1 file changed, 11 insertions(+), 2 deletions(-) >>> >>> diff --git a/drivers/hwtracing/coresight/coresight.c >>> b/drivers/hwtracing/coresight/coresight.c >>> index 34cd1ed..2da9e39 100644 >>> --- a/drivers/hwtracing/coresight/coresight.c >>> +++ b/drivers/hwtracing/coresight/coresight.c >>> @@ -552,6 +552,7 @@ int coresight_enable(struct coresight_device *csdev) >>> int cpu, ret = 0; >>> struct coresight_device *sink; >>> struct list_head *path; >>> + enum coresight_dev_subtype_source subtype = >>> csdev->subtype.source_subtype; >> >> >> Checkpatch.pl complains about a line over 80 characters. > > > > Hmm, I think the name of the enum is unusually long. I could clean it up a > little bit. > Also, it does look silly to split a simple variable assignment though. > > What do you prefer ? enum coresight_dev_subtype_source subtype; ... ... subtype = csdev->subtype.source_subtype; That is probably the easiest. > > Suzuki