]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
nvme/ioctl: add missing space in err message
authorCaleb Sander Mateos <csander@purestorage.com>
Thu, 13 Feb 2025 17:05:14 +0000 (10:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Mar 2025 11:50:53 +0000 (12:50 +0100)
commit3bb2204ec30f7b2e81bd9fecbe44d2dbb5591a51
treea6c2466d11a44ab7a63afd0683a5c6357ca41d0c
parent9f3891867e8e5227115ed9831f1253bc7dacbdc5
nvme/ioctl: add missing space in err message

[ Upstream commit 487a3ea7b1b8ba2ca7d2c2bb3c3594dc360d6261 ]

nvme_validate_passthru_nsid() logs an err message whose format string is
split over 2 lines. There is a missing space between the two pieces,
resulting in log lines like "... does not match nsid (1)of namespace".
Add the missing space between ")" and "of". Also combine the format
string pieces onto a single line to make the err message easier to grep.

Fixes: e7d4b5493a2d ("nvme: factor out a nvme_validate_passthru_nsid helper")
Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/nvme/host/ioctl.c