diff options
author | Keith Busch <kbusch@kernel.org> | 2024-03-07 17:55:42 +0100 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2024-03-08 15:46:51 +0100 |
commit | 34485c37ea931d4a086701de1d61a986b9707b7d (patch) | |
tree | 5620ec92398b8304713c1f4b6008ea06eb3df311 /drivers/nvme | |
parent | cdrom: gdrom: Convert to platform remove callback returning void (diff) | |
download | linux-34485c37ea931d4a086701de1d61a986b9707b7d.tar.xz linux-34485c37ea931d4a086701de1d61a986b9707b7d.zip |
nvme: change shutdown timeout setting message
User visible messages containing the word "timeout" can be alarming.
This one from nvme is just reporting a potentially informative device
configuration, and everything is working as designed. Change the text to
report the less concerning "D3 entry latency", which is where this value
comes from anyway.
Reported-by: Len Brown <lenb@kernel.org>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 2baf5786a92f..0dcaf3973dc4 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -3233,7 +3233,7 @@ static int nvme_init_identify(struct nvme_ctrl *ctrl) if (ctrl->shutdown_timeout != shutdown_timeout) dev_info(ctrl->device, - "Shutdown timeout set to %u seconds\n", + "D3 entry latency set to %u seconds\n", ctrl->shutdown_timeout); } else ctrl->shutdown_timeout = shutdown_timeout; |