linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Bean Huo <huobean@gmail.com>,
	"Martin K . Petersen" <martin.petersen@oracle.com>,
	"James E . J . Bottomley" <jejb@linux.ibm.com>
Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org,
	Alim Akhtar <alim.akhtar@samsung.com>,
	Avri Altman <avri.altman@wdc.com>, Can Guo <cang@codeaurora.org>,
	Stanley Chu <stanley.chu@mediatek.com>
Subject: Re: [PATCH V3] scsi: ufs-debugfs: Add error counters
Date: Fri, 18 Dec 2020 20:34:50 +0200	[thread overview]
Message-ID: <17957d71-d45b-d5f6-8ef2-453402a23268@intel.com> (raw)
In-Reply-To: <de305f4d6034950908e8e889c4af5442431e7d15.camel@gmail.com>

On 18/12/20 5:17 pm, Bean Huo wrote:
> On Fri, 2020-12-18 at 14:20 +0200, Adrian Hunter wrote:
>> People testing have a need to know how many errors might be occurring
>> over time. Add error counters and expose them via debugfs.
>>
>> A module initcall is used to create a debugfs root directory for
>> ufshcd-related items. In the case that modules are built-in, then
>> initialization is done in link order, so move ufshcd-core to the top
>> of
>> the Makefile.
>>
>> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
>> Reviewed-by: Avri Altman <avri.altman@wdc.com>
>> ---
>>
>>
>> Changes in V3:
>> 	Fixed link order to ensure correct initcall ordering when
>> 	modules are built-in.
>> 	Amended commit message accordingly.
>>
>> Changes in V2:
>> 	Add missing '#include "ufs-debugfs.h"' in ufs-debugfs.c
>> 	Reported-by: kernel test robot <lkp@intel.com>
>>
>>
>>  drivers/scsi/ufs/Makefile      | 13 +++++---
>>  drivers/scsi/ufs/ufs-debugfs.c | 56
>> ++++++++++++++++++++++++++++++++++
>>  drivers/scsi/ufs/ufs-debugfs.h | 22 +++++++++++++
>>  drivers/scsi/ufs/ufshcd.c      | 19 ++++++++++++
>>  drivers/scsi/ufs/ufshcd.h      |  5 +++
>>  5 files changed, 111 insertions(+), 4 deletions(-)
>>  create mode 100644 drivers/scsi/ufs/ufs-debugfs.c
>>  create mode 100644 drivers/scsi/ufs/ufs-debugfs.h
>>
>> diff --git a/drivers/scsi/ufs/Makefile b/drivers/scsi/ufs/Makefile
>> index 4679af1b564e..06f3a3fe4a44 100644
>> --- a/drivers/scsi/ufs/Makefile
>> +++ b/drivers/scsi/ufs/Makefile
>> @@ -1,5 +1,14 @@
>>  # SPDX-License-Identifier: GPL-2.0
>>  # UFSHCD makefile
>> +
>> +# The link order is important here. ufshcd-core must initialize
>> +# before vendor drivers.
>> +obj-$(CONFIG_SCSI_UFSHCD)		+= ufshcd-core.o
>> +ufshcd-core-y				+= ufshcd.o ufs-sysfs.o
>> +ufshcd-core-$(CONFIG_DEBUG_FS)		+= ufs-debugfs.o
>> +ufshcd-core-$(CONFIG_SCSI_UFS_BSG)	+= ufs_bsg.o
>> +ufshcd-core-$(CONFIG_SCSI_UFS_CRYPTO)	+= ufshcd-crypto.o
>> +
>>  obj-$(CONFIG_SCSI_UFS_DWC_TC_PCI) += tc-dwc-g210-pci.o ufshcd-dwc.o
>> tc-dwc-g210.o
>>  obj-$(CONFIG_SCSI_UFS_DWC_TC_PLATFORM) += tc-dwc-g210-pltfrm.o
>> ufshcd-dwc.o tc-dwc-g210.o
>>  obj-$(CONFIG_SCSI_UFS_CDNS_PLATFORM) += cdns-pltfrm.o
>> @@ -7,10 +16,6 @@ obj-$(CONFIG_SCSI_UFS_QCOM) += ufs_qcom.o
>>  ufs_qcom-y += ufs-qcom.o
>>  ufs_qcom-$(CONFIG_SCSI_UFS_CRYPTO) += ufs-qcom-ice.o
>>  obj-$(CONFIG_SCSI_UFS_EXYNOS) += ufs-exynos.o
>> -obj-$(CONFIG_SCSI_UFSHCD) += ufshcd-core.o
>> -ufshcd-core-y				+= ufshcd.o ufs-sysfs.o
>> -ufshcd-core-$(CONFIG_SCSI_UFS_BSG)	+= ufs_bsg.o
>> -ufshcd-core-$(CONFIG_SCSI_UFS_CRYPTO) += ufshcd-crypto.o
>>  obj-$(CONFIG_SCSI_UFSHCD_PCI) += ufshcd-pci.o
>>  obj-$(CONFIG_SCSI_UFSHCD_PLATFORM) += ufshcd-pltfrm.o
>>  obj-$(CONFIG_SCSI_UFS_HISI) += ufs-hisi.o
>> diff --git a/drivers/scsi/ufs/ufs-debugfs.c b/drivers/scsi/ufs/ufs-
>> debugfs.c
>> new file mode 100644
>> index 000000000000..dee98dc72d29
>> --- /dev/null
>> +++ b/drivers/scsi/ufs/ufs-debugfs.c
>> @@ -0,0 +1,56 @@
>> +// SPDX-License-Identifier: GPL-2.0
>> +// Copyright (C) 2020 Intel Corporation
>> +
>> +#include <linux/debugfs.h>
>> +
>> +#include "ufs-debugfs.h"
>> +#include "ufshcd.h"
>> +
>> +static struct dentry *ufs_debugfs_root;
>> +
>> +void __init ufs_debugfs_init(void)
>> +{
>> +	ufs_debugfs_root = debugfs_create_dir("ufshcd", NULL);
>> +}
>> +
>> +void __exit ufs_debugfs_exit(void)
>> +{
>> +	debugfs_remove_recursive(ufs_debugfs_root);
>> +}
>> +
>> +static int ufs_debugfs_stats_show(struct seq_file *s, void *data)
>> +{
>> +	struct ufs_hba *hba = s->private;
>> +	struct ufs_event_hist *e = hba->ufs_stats.event;
>> +
>> +#define PRT(fmt, typ) \
>> +	seq_printf(s, fmt, e[UFS_EVT_ ## typ].cnt)
>> +
>> +	PRT("PHY Adapter Layer errors (except LINERESET): %llu\n",
>> PA_ERR);
>> +	PRT("Data Link Layer errors: %llu\n", DL_ERR);
>> +	PRT("Network Layer errors: %llu\n", NL_ERR);
>> +	PRT("Transport Layer errors: %llu\n", TL_ERR);
>> +	PRT("Generic DME errors: %llu\n", DME_ERR);
>> +	PRT("Auto-hibernate errors: %llu\n", AUTO_HIBERN8_ERR);
>> +	PRT("IS Fatal errors (CEFES, SBFES, HCFES, DFES): %llu\n",
>> FATAL_ERR);
>> +	PRT("DME Link Startup errors: %llu\n", LINK_STARTUP_FAIL);
>> +	PRT("PM Resume errors: %llu\n", RESUME_ERR);
>> +	PRT("PM Suspend errors : %llu\n", SUSPEND_ERR);
>> +	PRT("Logical Unit Resets: %llu\n", DEV_RESET);
>> +	PRT("Host Resets: %llu\n", HOST_RESET);
>> +	PRT("SCSI command aborts: %llu\n", ABORT);
>> +#undef PRT
>> +	return 0;
>> +}
>> +DEFINE_SHOW_ATTRIBUTE(ufs_debugfs_stats);
>> +
>> +void ufs_debugfs_hba_init(struct ufs_hba *hba)
>> +{
> 
> I prefer adding:
> 	if (!ufs_debugfs_root)
> 		return;

I understand that you want to be careful, but it is not harmful if it is
NULL, so are you sure we should do this?

> 
>> +	hba->debugfs_root = debugfs_create_dir(dev_name(hba->dev),
>> ufs_debugfs_root);

It is OK to pass NULL or error codes as parent dentry to debugfs_create_...
functions.

If ufs_debugfs_root is NULL (which won't happen) then the directory will be
created in debugfs root i.e. /sys/kernel/debug, using the device name.

If ufs_debugfs_root is an error code, then debugfs_create_dir will return an
error code, and following debugfs_create_file() will return an error code.

> 
>> +	debugfs_create_file("stats", 0400, hba->debugfs_root, hba,
>> &ufs_debugfs_stats_fops);
> 
> 	if (!debugfs_create_file("stats", 0400, hba->debugfs_root, hba,
> 		&ufs_debugfs_stats_fops)) {
> 		debugfs_remove(hba->debugfs_root);
> 		return -ENOMEM;

Being without debugfs files is not a problem, so there is no reason to
return an error.  It is relatively rare in the kernel that code checks the
return value of debugfs_create_file().  We really don't want to fail probing
just because of debugfs.

However, because debugfs' only real resource is a small amount of memory, it
is extremely unlikely it will fail in that sense.  Although you can force it
to fail by adding the kernel command line parameter debugfs=off

  reply	other threads:[~2020-12-18 18:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-18 12:20 [PATCH V3] scsi: ufs-debugfs: Add error counters Adrian Hunter
2020-12-18 15:17 ` Bean Huo
2020-12-18 18:34   ` Adrian Hunter [this message]
2020-12-18 18:57     ` Bean Huo

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=17957d71-d45b-d5f6-8ef2-453402a23268@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=alim.akhtar@samsung.com \
    --cc=avri.altman@wdc.com \
    --cc=cang@codeaurora.org \
    --cc=huobean@gmail.com \
    --cc=jejb@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=stanley.chu@mediatek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
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;
as well as URLs for NNTP newsgroup(s).