Skip to content

Commit 1cbfb82

Browse files
committed
Merge tag 'for-6.14/block-20250118' of git://git.kernel.dk/linux
Pull block updates from Jens Axboe: - NVMe pull requests via Keith: - Target support for PCI-Endpoint transport (Damien) - TCP IO queue spreading fixes (Sagi, Chaitanya) - Target handling for "limited retry" flags (Guixen) - Poll type fix (Yongsoo) - Xarray storage error handling (Keisuke) - Host memory buffer free size fix on error (Francis) - MD pull requests via Song: - Reintroduce md-linear (Yu Kuai) - md-bitmap refactor and fix (Yu Kuai) - Replace kmap_atomic with kmap_local_page (David Reaver) - Quite a few queue freeze and debugfs deadlock fixes Ming introduced lockdep support for this in the 6.13 kernel, and it has (unsurprisingly) uncovered quite a few issues - Use const attributes for IO schedulers - Remove bio ioprio wrappers - Fixes for stacked device atomic write support - Refactor queue affinity helpers, in preparation for better supporting isolated CPUs - Cleanups of loop O_DIRECT handling - Cleanup of BLK_MQ_F_* flags - Add rotational support for null_blk - Various fixes and cleanups * tag 'for-6.14/block-20250118' of git://git.kernel.dk/linux: (106 commits) block: Don't trim an atomic write block: Add common atomic writes enable flag md/md-linear: Fix a NULL vs IS_ERR() bug in linear_add() block: limit disk max sectors to (LLONG_MAX >> 9) block: Change blk_stack_atomic_writes_limits() unit_min check block: Ensure start sector is aligned for stacking atomic writes blk-mq: Move more error handling into blk_mq_submit_bio() block: Reorder the request allocation code in blk_mq_submit_bio() nvme: fix bogus kzalloc() return check in nvme_init_effects_log() md/md-bitmap: move bitmap_{start, end}write to md upper layer md/raid5: implement pers->bitmap_sector() md: add a new callback pers->bitmap_sector() md/md-bitmap: remove the last parameter for bimtap_ops->endwrite() md/md-bitmap: factor behind write counters out from bitmap_{start/end}write() md: Replace deprecated kmap_atomic() with kmap_local_page() md: reintroduce md-linear partitions: ldm: remove the initial kernel-doc notation blk-cgroup: rwstat: fix kernel-doc warnings in header file blk-cgroup: fix kernel-doc warnings in header file nbd: fix partial sending ...
2 parents 3d3a9c8 + 554b228 commit 1cbfb82

File tree

144 files changed

+5354
-1415
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+5354
-1415
lines changed

Documentation/PCI/endpoint/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ PCI Endpoint Framework
1515
pci-ntb-howto
1616
pci-vntb-function
1717
pci-vntb-howto
18+
pci-nvme-function
1819

1920
function/binding/pci-test
2021
function/binding/pci-ntb
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.. SPDX-License-Identifier: GPL-2.0
2+
3+
=================
4+
PCI NVMe Function
5+
=================
6+
7+
:Author: Damien Le Moal <[email protected]>
8+
9+
The PCI NVMe endpoint function implements a PCI NVMe controller using the NVMe
10+
subsystem target core code. The driver for this function resides with the NVMe
11+
subsystem as drivers/nvme/target/nvmet-pciep.c.
12+
13+
See Documentation/nvme/nvme-pci-endpoint-target.rst for more details.

Documentation/nvme/index.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.. SPDX-License-Identifier: GPL-2.0
2+
3+
==============
4+
NVMe Subsystem
5+
==============
6+
7+
.. toctree::
8+
:maxdepth: 2
9+
:numbered:
10+
11+
feature-and-quirk-policy
12+
nvme-pci-endpoint-target

0 commit comments

Comments
 (0)