Commit 6fe0be6dc7fa for kernel

commit 6fe0be6dc7faf984599b1e356ead1c49b64ed3ca
Merge: 9d88bb929aa1 7e36e03d192a
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Fri May 1 11:26:15 2026 -0700

    Merge tag 'block-7.1-20260430' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux

    Pull block fixes from Jens Axboe:

     - MD pull request via Yu:
          - Fix a raid5 UAF on IO across the reshape position
          - Avoid failing RAID1/RAID10 devices for invalid IO errors
          - Fix RAID10 divide-by-zero when far_copies is zero
          - Restore bitmap grow through sysfs
          - Use mddev_is_dm() instead of open-coding gendisk checks
          - Use ATTRIBUTE_GROUPS() for md default sysfs attributes
          - Replace open-coded wait loops with wait_event helpers

     - NVMe pull request via Keith:
          - Target data transfer size configuation (Aurelien)
          - Enable P2P for RDMA (Shivaji Kant)
          - TCP target updates (Maurizio, Alistair, Chaitanya, Shivam Kumar)
          - TCP host updates (Alistair, Chaitanya)
          - Authentication updates (Alistair, Daniel, Chris Leech)
          - Multipath fixes (John Garry)
          - New quirks (Alan Cui, Tao Jiang)
          - Apple driver fix (Fedor Pchelkin)
          - PCI admin doorbell update fix (Keith)

     - Properly propagate CDROM read-only state to the block layer

    * tag 'block-7.1-20260430' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux: (35 commits)
      md: use ATTRIBUTE_GROUPS() for md default sysfs attributes
      md: use mddev_is_dm() instead of open-coding gendisk checks
      md/raid1: replace wait loop with wait_event_idle() in raid1_write_request()
      md/md-bitmap: add a none backend for bitmap grow
      md/md-bitmap: split bitmap sysfs groups
      md: factor bitmap creation away from sysfs handling
      md: use mddev_lock_nointr() in mddev_suspend_and_lock_nointr()
      md: replace wait loop with wait_event() in md_handle_request()
      md/raid10: fix divide-by-zero in setup_geo() with zero far_copies
      md/raid1,raid10: don't fail devices for invalid IO errors
      MAINTAINERS: Add Xiao Ni as md/raid reviewer
      md/raid5: Fix UAF on IO across the reshape position
      cdrom, scsi: sr: propagate read-only status to block layer via set_disk_ro()
      nvme-auth: Hash DH shared secret to create session key
      nvme-pci: fix missed admin queue sq doorbell write
      nvme-auth: Include SC_C in RVAL controller hash
      nvme-tcp: teardown circular locking fixes
      nvmet-tcp: Don't clear tls_key when freeing sq
      Revert "nvmet-tcp: Don't free SQ on authentication success"
      nvme: skip trace completion for host path errors
      ...