diff options
author | Christoph Hellwig <hch@lst.de> | 2023-05-31 15:54:54 +0300 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2023-05-31 19:21:26 +0300 |
commit | 856303797724d28f1d65b702f0eadcee1ea7abf5 (patch) | |
tree | 5f743c0ca379dd6f1a2986183a03560abaf9838c /drivers/nvme | |
parent | c7275ce6a5fd32ca9f5a6294ed89cf0523181af9 (diff) | |
download | linux-856303797724d28f1d65b702f0eadcee1ea7abf5.tar.xz |
nvme: fix the name of Zone Append for verbose logging
No Management involved in Zone Appened.
Fixes: bd83fe6f2cd2 ("nvme: add verbose error logging")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Alan Adamson <alan.adamson@oracle.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/constants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c index bc523ca02254..5e4f8848dce0 100644 --- a/drivers/nvme/host/constants.c +++ b/drivers/nvme/host/constants.c @@ -21,7 +21,7 @@ static const char * const nvme_ops[] = { [nvme_cmd_resv_release] = "Reservation Release", [nvme_cmd_zone_mgmt_send] = "Zone Management Send", [nvme_cmd_zone_mgmt_recv] = "Zone Management Receive", - [nvme_cmd_zone_append] = "Zone Management Append", + [nvme_cmd_zone_append] = "Zone Append", }; static const char * const nvme_admin_ops[] = { |