]> www.infradead.org Git - users/hch/misc.git/commitdiff
Merge tag 'for-6.14/block-20250118' of git://git.kernel.dk/linux
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 21 Jan 2025 03:38:46 +0000 (19:38 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 21 Jan 2025 03:38:46 +0000 (19:38 -0800)
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
  ...

14 files changed:
1  2 
block/bfq-iosched.c
drivers/block/ublk_drv.c
drivers/md/dm-verity-fec.c
drivers/nvme/host/nvme.h
drivers/nvme/host/pci.c
drivers/nvme/host/tcp.c
drivers/nvme/target/admin-cmd.c
drivers/nvme/target/configfs.c
drivers/nvme/target/core.c
drivers/nvme/target/io-cmd-bdev.c
drivers/nvme/target/nvmet.h
drivers/scsi/scsi_lib.c
drivers/ufs/core/ufshcd.c
fs/bcachefs/move.c

Simple merge
Simple merge
index e61855da6461ae15bae52e18b65bd127ab12ffec,b0ee199009fc2b8eaa3575901a51f9bde5e1d1c7..0c41949db784badb70b7dd61251d73f38538eb9c
@@@ -121,8 -132,7 +121,8 @@@ static int fec_decode_bufs(struct dm_ve
        u8 *par, *block;
        struct bio *bio = dm_bio_from_per_bio_data(io, v->ti->per_io_data_size);
  
 -      par = fec_read_parity(v, rsb, block_offset, &offset, &buf, bio->bi_ioprio);
 +      par = fec_read_parity(v, rsb, block_offset, &offset,
-                             par_buf_offset, &buf, bio_prio(bio));
++                            par_buf_offset, &buf, bio->bi_ioprio);
        if (IS_ERR(par))
                return PTR_ERR(par);
  
                if (offset >= v->fec->io_size) {
                        dm_bufio_release(buf);
  
 -                      par = fec_read_parity(v, rsb, block_offset, &offset, &buf, bio->bi_ioprio);
 +                      par = fec_read_parity(v, rsb, block_offset, &offset,
-                                             par_buf_offset, &buf, bio_prio(bio));
++                                            par_buf_offset, &buf, bio->bi_ioprio);
                        if (IS_ERR(par))
                                return PTR_ERR(par);
                }
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index fde6c555af619e1c0f8458a26c707cdc82137474,43c9888eea906799809773ef48401722ffae5bc0..cdc4a09a6e8a48d39210f459049cc831918b847c
@@@ -1407,12 -1490,12 +1508,12 @@@ static void nvmet_setup_p2p_ns_map(stru
        struct nvmet_ns *ns;
        unsigned long idx;
  
-       if (!req->p2p_client)
+       if (!p2p_client)
                return;
  
-       ctrl->p2p_client = get_device(req->p2p_client);
+       ctrl->p2p_client = get_device(p2p_client);
  
 -      xa_for_each(&ctrl->subsys->namespaces, idx, ns)
 +      nvmet_for_each_enabled_ns(&ctrl->subsys->namespaces, idx, ns)
                nvmet_p2pmem_ns_add_p2p(ctrl, ns);
  }
  
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge