* [GIT PULL] nvme fixes for Linux 6.13
@ 2024-12-05 17:10 Keith Busch
2024-12-05 17:15 ` Jens Axboe
0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2024-12-05 17:10 UTC (permalink / raw)
To: axboe; +Cc: hch, sagi, linux-nvme
The following changes since commit ec9b3ac6e5630e320d926ea13a06d86d2a6bdde1:
Merge tag 'nvme-6.13-2024-11-21' of git://git.infradead.org/nvme into for-6.13/block (2024-11-21 10:57:34 -0700)
are available in the Git repository at:
git://git.infradead.org/nvme.git tags/nvme-6.13-2024-12-05
for you to fetch changes up to b4e12f5728ff963ca5590c48b85a20d076bf517d:
nvme-tcp: simplify nvme_tcp_teardown_io_queues() (2024-12-04 10:15:46 -0800)
----------------------------------------------------------------
nvme fixes for Linux 6.13
- Target fix using incorrect zero buffer (Nilay)
- Device specifc deallocate quirk fixes (Christoph, Keith)
- Fabrics fix for handling max command target bugs (Maurizio)
- Cocci fix usage for kzalloc (Yu-Chen)
- DMA size fix for host memory buffer feature (Christoph)
- Fabrics queue cleanup fixes (Chunguang)
----------------------------------------------------------------
Christoph Hellwig (2):
nvme: don't apply NVME_QUIRK_DEALLOCATE_ZEROES when DSM is not supported
nvme-pci: don't use dma_alloc_noncontiguous with 0 merge boundary
Chunguang.xu (4):
nvme-tcp: fix the memleak while create new ctrl failed
nvme-rdma: unquiesce admin_q before destroy it
nvme-tcp: no need to quiesce admin_q in nvme_tcp_teardown_io_queues()
nvme-tcp: simplify nvme_tcp_teardown_io_queues()
Keith Busch (1):
nvme-pci: remove two deallocate zeroes quirks
Maurizio Lombardi (1):
nvme-fabrics: handle zero MAXCMD without closing the connection
Nilay Shroff (1):
nvmet: use kzalloc instead of ZERO_PAGE in nvme_execute_identify_ns_nvm()
Yu-Chun Lin (1):
nvmet: replace kmalloc + memset with kzalloc for data allocation
drivers/nvme/host/core.c | 8 +++++---
drivers/nvme/host/pci.c | 7 +++----
drivers/nvme/host/rdma.c | 8 +-------
drivers/nvme/host/tcp.c | 17 +++++------------
drivers/nvme/target/admin-cmd.c | 9 +++++++--
drivers/nvme/target/pr.c | 3 +--
6 files changed, 22 insertions(+), 30 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] nvme fixes for Linux 6.13
2024-12-05 17:10 Keith Busch
@ 2024-12-05 17:15 ` Jens Axboe
0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2024-12-05 17:15 UTC (permalink / raw)
To: Keith Busch; +Cc: hch, sagi, linux-nvme
On 12/5/24 10:10 AM, Keith Busch wrote:
> The following changes since commit ec9b3ac6e5630e320d926ea13a06d86d2a6bdde1:
>
> Merge tag 'nvme-6.13-2024-11-21' of git://git.infradead.org/nvme into for-6.13/block (2024-11-21 10:57:34 -0700)
>
> are available in the Git repository at:
>
> git://git.infradead.org/nvme.git tags/nvme-6.13-2024-12-05
>
> for you to fetch changes up to b4e12f5728ff963ca5590c48b85a20d076bf517d:
>
> nvme-tcp: simplify nvme_tcp_teardown_io_queues() (2024-12-04 10:15:46 -0800)
>
> ----------------------------------------------------------------
> nvme fixes for Linux 6.13
>
> - Target fix using incorrect zero buffer (Nilay)
> - Device specifc deallocate quirk fixes (Christoph, Keith)
> - Fabrics fix for handling max command target bugs (Maurizio)
> - Cocci fix usage for kzalloc (Yu-Chen)
> - DMA size fix for host memory buffer feature (Christoph)
> - Fabrics queue cleanup fixes (Chunguang)
Pulled, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] nvme fixes for Linux 6.13
@ 2024-12-31 17:41 Keith Busch
2024-12-31 17:46 ` Jens Axboe
0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2024-12-31 17:41 UTC (permalink / raw)
To: axboe; +Cc: linux-nvme, hch, sagi
The following changes since commit 790eb09e59709a1ffc1c64fe4aae2789120851b0:
block: get wp_offset by bdev_offset_from_zone_start (2024-12-10 13:24:24 -0700)
are available in the Git repository at:
git://git.infradead.org/nvme.git tags/nvme-6.13-2024-12-31
for you to fetch changes up to 36e3b1f9abe359b2bc25e81bc47b64354e42c9b1:
nvme-tcp: remove nvme_tcp_destroy_io_queues() (2024-12-27 13:33:48 -0800)
----------------------------------------------------------------
nvme fixes for Linux 6.13
- Fix device specific quirk for PRP list alignment (Robert)
- Fix target name overflow (Leo)
- Fix target write granularity (Luis)
- Fix target sleeping in atomic context (Nilay)
- Remove unnecessary tcp queue teardown (Chunguang)
----------------------------------------------------------------
Chunguang.xu (1):
nvme-tcp: remove nvme_tcp_destroy_io_queues()
Leo Stone (1):
nvmet: Don't overflow subsysnqn
Luis Chamberlain (1):
nvmet: propagate npwg topology
Nilay Shroff (1):
nvmet-loop: avoid using mutex in IO hotpath
Robert Beckett (1):
nvme-pci: 512 byte aligned dma pool segment quirk
drivers/nvme/host/nvme.h | 5 +++++
drivers/nvme/host/pci.c | 9 +++++++--
drivers/nvme/host/tcp.c | 18 +++++++-----------
drivers/nvme/target/admin-cmd.c | 9 +++++----
drivers/nvme/target/configfs.c | 23 +++++++++--------------
drivers/nvme/target/core.c | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------
drivers/nvme/target/io-cmd-bdev.c | 2 +-
drivers/nvme/target/nvmet.h | 7 +++++++
drivers/nvme/target/pr.c | 8 ++++----
9 files changed, 108 insertions(+), 81 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] nvme fixes for Linux 6.13
2024-12-31 17:41 [GIT PULL] nvme fixes for Linux 6.13 Keith Busch
@ 2024-12-31 17:46 ` Jens Axboe
0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2024-12-31 17:46 UTC (permalink / raw)
To: Keith Busch; +Cc: linux-nvme, hch, sagi
On 12/31/24 10:41 AM, Keith Busch wrote:
> The following changes since commit 790eb09e59709a1ffc1c64fe4aae2789120851b0:
>
> block: get wp_offset by bdev_offset_from_zone_start (2024-12-10 13:24:24 -0700)
>
> are available in the Git repository at:
>
> git://git.infradead.org/nvme.git tags/nvme-6.13-2024-12-31
>
> for you to fetch changes up to 36e3b1f9abe359b2bc25e81bc47b64354e42c9b1:
>
> nvme-tcp: remove nvme_tcp_destroy_io_queues() (2024-12-27 13:33:48 -0800)
>
> ----------------------------------------------------------------
> nvme fixes for Linux 6.13
>
> - Fix device specific quirk for PRP list alignment (Robert)
> - Fix target name overflow (Leo)
> - Fix target write granularity (Luis)
> - Fix target sleeping in atomic context (Nilay)
> - Remove unnecessary tcp queue teardown (Chunguang)
Pulled, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-31 17:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-31 17:41 [GIT PULL] nvme fixes for Linux 6.13 Keith Busch
2024-12-31 17:46 ` Jens Axboe
-- strict thread matches above, loose matches on Subject: below --
2024-12-05 17:10 Keith Busch
2024-12-05 17:15 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox