aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHannes Reinecke <hare@suse.com>2018-08-08 02:35:29 -0400
committerChristoph Hellwig <hch@lst.de>2018-08-08 05:54:55 -0400
commit8b92d0e3d400390660a26ef7f475524700fb86cf (patch)
treef0506eed3fabf87e3b161b77629a73ddbb5e2a62
parent8f220c418d070a097f7d292cf6b37f88d67845ad (diff)
nvme.h: fixup ANA group descriptor format
ANA Phase 3 draft had the 'reserved' field in the group descriptor format set to '23:17' (so that the first namespace identifier started at byte 24), but that got move with the approved TP to '31:17' (so that the first namespace identifier started at byte 32). Signed-off-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--include/linux/nvme.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h
index 64c9175723de..a661861e9d56 100644
--- a/include/linux/nvme.h
+++ b/include/linux/nvme.h
@@ -446,7 +446,7 @@ struct nvme_ana_group_desc {
446 __le32 nnsids; 446 __le32 nnsids;
447 __le64 chgcnt; 447 __le64 chgcnt;
448 __u8 state; 448 __u8 state;
449 __u8 rsvd17[7]; 449 __u8 rsvd17[15];
450 __le32 nsids[]; 450 __le32 nsids[];
451}; 451};
452 452