[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20251031140541.GB17006@lst.de>
Date: Fri, 31 Oct 2025 15:05:41 +0100
From: Christoph Hellwig <hch@....de>
To: alistair23@...il.com
Cc: kbusch@...nel.org, axboe@...nel.dk, hch@....de, sagi@...mberg.me,
hare@...e.de, kch@...dia.com, linux-nvme@...ts.infradead.org,
linux-kernel@...r.kernel.org,
Alistair Francis <alistair.francis@....com>
Subject: Re: [PATCH 3/3] nvme: Allow reauth from sysfs
On Thu, Oct 30, 2025 at 01:51:14PM +1000, alistair23@...il.com wrote:
> From: Alistair Francis <alistair.francis@....com>
>
> Allow userspace to trigger a reauth (REPLACETLSPSK) from sysfs.
> This can be done by writing the queue ID to te sysfs file.
>
> echo 0 > /sys/devices/virtual/nvme-fabrics/ctl/nvme0/replace_psk
>
> Note that only QID 0 (admin queue) is supported.
Why pass the queue ID then instead of a boolean value?
> +static ssize_t nvme_sysfs_replace_psk(struct device *dev,
> + struct device_attribute *attr, const char *buf,
> + size_t count)
Overly long line. And very inefficient annoyoing to modify indentation
compared to:
static ssize_t nvme_sysfs_replace_psk(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
> + rc = kstrtoint(buf, 10, &qid);
> + if (rc)
> + return rc;
Nitpick, but nvme style is to use the slightly more descriptive
error and not "rc" which doesn't mean much in general.
Powered by blists - more mailing lists