Skip to content

Commit 34485c3

Browse files
committed
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 <[email protected]> Reviewed-by: Chaitanya Kulkarni <[email protected]> Reviewed-by: Sagi Grimberg <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Signed-off-by: Keith Busch <[email protected]>
1 parent 0dc31b9 commit 34485c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/nvme/host/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3233,7 +3233,7 @@ static int nvme_init_identify(struct nvme_ctrl *ctrl)
32333233

32343234
if (ctrl->shutdown_timeout != shutdown_timeout)
32353235
dev_info(ctrl->device,
3236-
"Shutdown timeout set to %u seconds\n",
3236+
"D3 entry latency set to %u seconds\n",
32373237
ctrl->shutdown_timeout);
32383238
} else
32393239
ctrl->shutdown_timeout = shutdown_timeout;

0 commit comments

Comments
 (0)