forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
nvme: add support for enhanced metadata
NVM Express ratified TP 4069 defines new protection information formats. Implement support for the CRC64 guard tags. Since the block layer doesn't support variable length reference tags, driver support for the Storage Tag space is not supported at this time. Signed-off-by: Keith Busch <kbusch@kernel.org>
- Loading branch information
1 parent
b87dad2
commit 15e965a414da565fcf7d7aa958a9850bb714db17
Showing
3 changed files
with
188 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -455,6 +455,7 @@ struct nvme_ns { | ||
| u16 sgs; | ||
| u32 sws; | ||
| u8 pi_type; | ||
| u8 guard_type; | ||
| #ifdef CONFIG_BLK_DEV_ZONED | ||
| u64 zsze; | ||
| #endif | ||
Oops, something went wrong.