From: <zhangxuezhi3@gmail.com>
To: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Cc: jejb@linux.ibm.com, martin.petersen@oracle.com,
bvanassche@acm.org, johannes.thumshirn@wdc.com,
himanshu.madhani@oracle.com, zhangxuezhi1@coolpad.com,
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] scsi: csiostor: convert sysfs snprintf to sysfs_emit
Date: Thu, 1 Sep 2022 08:51:14 +0800 [thread overview]
Message-ID: <20220901085114.4a6a5a99@carlis-virtual-machine> (raw)
In-Reply-To: <b2a4ba8c-c67b-3041-9b81-783611de0763@opensource.wdc.com>
On Thu, 1 Sep 2022 09:23:58 +0900
Damien Le Moal <damien.lemoal@opensource.wdc.com> wrote:
> On 8/31/22 23:10, Xuezhi Zhang wrote:
> > From: Xuezhi Zhang <zhangxuezhi1@coolpad.com>
> >
> > Fix up all sysfs show entries to use sysfs_emit
> >
> > Signed-off-by: Xuezhi Zhang <zhangxuezhi1@coolpad.com>
> > ---
> > drivers/scsi/csiostor/csio_scsi.c | 8 ++++----
> > 1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/scsi/csiostor/csio_scsi.c
> > b/drivers/scsi/csiostor/csio_scsi.c index
> > 9aafe0002ab1..39e8c3c26a19 100644 ---
> > a/drivers/scsi/csiostor/csio_scsi.c +++
> > b/drivers/scsi/csiostor/csio_scsi.c @@ -1366,9 +1366,9 @@
> > csio_show_hw_state(struct device *dev, struct csio_hw *hw =
> > csio_lnode_to_hw(ln);
> > if (csio_is_hw_ready(hw))
> > - return snprintf(buf, PAGE_SIZE, "ready\n");
> > + return sysfs_emit(buf, "ready\n");
> > else
>
> While at it, you could remove this useless else here.
>
> > - return snprintf(buf, PAGE_SIZE, "not ready\n");
> > + return sysfs_emit(buf, "not ready\n");
>
> Extra space after the ",".
Hi,
OK, I see.
Thanks.
>
> > }
> >
> > /* Device reset */
> > @@ -1430,7 +1430,7 @@ csio_show_dbg_level(struct device *dev,
> > {
> > struct csio_lnode *ln = shost_priv(class_to_shost(dev));
> >
> > - return snprintf(buf, PAGE_SIZE, "%x\n",
> > ln->params.log_level);
> > + return sysfs_emit(buf, "%x\n", ln->params.log_level);
> > }
> >
> > /* Store debug level */
> > @@ -1476,7 +1476,7 @@ csio_show_num_reg_rnodes(struct device *dev,
> > {
> > struct csio_lnode *ln = shost_priv(class_to_shost(dev));
> >
> > - return snprintf(buf, PAGE_SIZE, "%d\n",
> > ln->num_reg_rnodes);
> > + return sysfs_emit(buf, "%d\n", ln->num_reg_rnodes);
> > }
> >
> > static DEVICE_ATTR(num_reg_rnodes, S_IRUGO,
> > csio_show_num_reg_rnodes, NULL);
>
prev parent reply other threads:[~2022-09-01 0:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-31 14:10 [PATCH] scsi: csiostor: convert sysfs snprintf to sysfs_emit Xuezhi Zhang
2022-09-01 0:23 ` Damien Le Moal
2022-09-01 0:51 ` zhangxuezhi3 [this message]
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=20220901085114.4a6a5a99@carlis-virtual-machine \
--to=zhangxuezhi3@gmail.com \
--cc=bvanassche@acm.org \
--cc=damien.lemoal@opensource.wdc.com \
--cc=himanshu.madhani@oracle.com \
--cc=jejb@linux.ibm.com \
--cc=johannes.thumshirn@wdc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=zhangxuezhi1@coolpad.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