diff options
| author | Guixin Liu <kanie@linux.alibaba.com> | 2026-06-22 11:32:54 +0800 |
|---|---|---|
| committer | Keith Busch <kbusch@kernel.org> | 2026-07-06 11:13:43 -0700 |
| commit | 4fe024eeba34b87b7e7388139d7836cde9928c6a (patch) | |
| tree | 1fbb1554231075b86d44a9878b9b751fa853ceb1 /include | |
| parent | f61c934aa084b7440fec681be3f4b481eb5a8609 (diff) | |
| download | linux-next-4fe024eeba34b87b7e7388139d7836cde9928c6a.tar.gz linux-next-4fe024eeba34b87b7e7388139d7836cde9928c6a.zip | |
nvme: fix typos in reservation related constants
Fix the following spelling errors:
- NVMET_PR_NOTIFI_MASK_ALL -> NVMET_PR_NOTIFY_MASK_ALL
- NVME_PR_LOG_RESERVATOIN_PREEMPTED -> NVME_PR_LOG_RESERVATION_PREEMPTED
- NVME_AEN_RESV_LOG_PAGE_AVALIABLE -> NVME_AEN_RESV_LOG_PAGE_AVAILABLE
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/nvme.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 041f30931a90..91ce434a7e8d 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -2272,14 +2272,14 @@ struct nvme_completion { #define NVME_TERTIARY(ver) ((ver) & 0xff) enum { - NVME_AEN_RESV_LOG_PAGE_AVALIABLE = 0x00, + NVME_AEN_RESV_LOG_PAGE_AVAILABLE = 0x00, }; enum { NVME_PR_LOG_EMPTY_LOG_PAGE = 0x00, NVME_PR_LOG_REGISTRATION_PREEMPTED = 0x01, NVME_PR_LOG_RESERVATION_RELEASED = 0x02, - NVME_PR_LOG_RESERVATOIN_PREEMPTED = 0x03, + NVME_PR_LOG_RESERVATION_PREEMPTED = 0x03, }; enum { |
