aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/nvme
diff options
context:
space:
mode:
authorCaleb Sander <csander@purestorage.com>2024-01-31 09:43:12 -0700
committerKeith Busch <kbusch@kernel.org>2024-01-31 16:06:12 -0800
commit6f9a71c61183d6849d5aeab085b210c10398af9a (patch)
treec82d440efea3254693beea4eed9ca127ebc82b33 /drivers/nvme
parent4b6821940eeb238a0cc9af322e9ebe8e12613f6a (diff)
downloadlinux-6f9a71c61183d6849d5aeab085b210c10398af9a.tar.gz
nvme: remove redundant status mask
In nvme_get_error_status_str(), the status code is already masked with 0x7ff at the beginning of the function. Don't bother masking it again when indexing nvme_statuses. Signed-off-by: Caleb Sander <csander@purestorage.com> Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme')
-rw-r--r--drivers/nvme/host/constants.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c
index 8791283ec6ad2a..6f2ebb5fcdb05e 100644
--- a/drivers/nvme/host/constants.c
+++ b/drivers/nvme/host/constants.c
@@ -175,7 +175,7 @@ const char *nvme_get_error_status_str(u16 status)
{
status &= 0x7ff;
if (status < ARRAY_SIZE(nvme_statuses) && nvme_statuses[status])
- return nvme_statuses[status & 0x7ff];
+ return nvme_statuses[status];
return "Unknown";
}