diff options
| author | Jens Axboe <axboe@kernel.dk> | 2024-02-15 09:42:03 -0700 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2024-02-15 09:42:03 -0700 |
| commit | 9c10f2b172eb26007e9b641271798234911d24c2 (patch) | |
| tree | 42a4c332410d4fb742b544b823390536c0baeb23 /include/linux | |
| parent | 5f63a493b99c848ad5200402bebe26211e00025a (diff) | |
| parent | 8d30528a170905ede9ab6ab81f229e441808590b (diff) | |
| download | linux-9c10f2b172eb26007e9b641271798234911d24c2.tar.gz linux-9c10f2b172eb26007e9b641271798234911d24c2.tar.bz2 linux-9c10f2b172eb26007e9b641271798234911d24c2.zip | |
Merge tag 'nvme-6.8-2024-02-15' of git://git.infradead.org/nvme into block-6.8
Pull NVMe fixes from Keith:
"nvme fixes for Linux 6.8
- Fabrics connection error handling (Chaitanya)
- Use relaxed effects to reduce unnecessary queue freezes (Keith)"
* tag 'nvme-6.8-2024-02-15' of git://git.infradead.org/nvme:
nvmet: remove superfluous initialization
nvme: implement support for relaxed effects
nvme-fabrics: fix I/O connect error handling
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/nvme.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index bc605ec4a3fd..3ef4053ea950 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -646,6 +646,7 @@ enum { NVME_CMD_EFFECTS_NCC = 1 << 2, NVME_CMD_EFFECTS_NIC = 1 << 3, NVME_CMD_EFFECTS_CCC = 1 << 4, + NVME_CMD_EFFECTS_CSER_MASK = GENMASK(15, 14), NVME_CMD_EFFECTS_CSE_MASK = GENMASK(18, 16), NVME_CMD_EFFECTS_UUID_SEL = 1 << 19, NVME_CMD_EFFECTS_SCOPE_MASK = GENMASK(31, 20), |
