Hi Linus, Set of fixes that should go into this release. This pull request contains: - Allow symlink from the bfq.weight cgroup parameter to the general weight (Angelo) - Damien is new skd maintainer (Bart) - NVMe pull request from Sagi, with a few small fixes. - Ensure we set DMA segment size properly, dma-debug is now tripping on these (Christoph) - Remove useless debugfs_create() return check (Greg) - Remove redundant unlikely() check on IS_ERR() (Kefeng) - Fixup request freeing on exit (Ming) Please pull! git://git.kernel.dk/linux-block.git tags/for-linus-20190608 ---------------------------------------------------------------- Angelo Ruocco (2): cgroup: let a symlink too be created with a cftype file block, bfq: add weight symlink to the bfq.weight cgroup parameter Bart Van Assche (1): MAINTAINERS: Hand over skd maintainership Christoph Hellwig (4): nvme-pci: don't limit DMA segement size rsxx: don't call dma_set_max_seg_size mtip32xx: also set max_segment_size in the device mmc: also set max_segment_size in the device Greg Kroah-Hartman (1): block: aoe: no need to check return value of debugfs_create functions Jaesoo Lee (1): nvme: Fix u32 overflow in the number of namespace list calculation Jens Axboe (1): Merge branch 'nvme-5.2-rc-next' of git://git.infradead.org/nvme into for-linus Kefeng Wang (1): block: Drop unlikely before IS_ERR(_OR_NULL) Max Gurtovoy (1): nvme-rdma: use dynamic dma mapping per command Ming Lei (1): block: free sched's request pool in blk_cleanup_queue Minwoo Im (1): nvmet: fix data_len to 0 for bdev-backed write_zeroes Sagi Grimberg (2): nvme-rdma: fix queue mapping when queue count is limited nvme-tcp: fix queue mapping when queue count is limited MAINTAINERS | 2 +- block/bfq-cgroup.c | 6 +- block/blk-cgroup.c | 2 +- block/blk-core.c | 13 ++++ block/blk-mq-sched.c | 30 +++++++- block/blk-mq-sched.h | 1 + block/blk-sysfs.c | 2 +- block/blk.h | 10 ++- block/elevator.c | 2 +- drivers/block/aoe/aoeblk.c | 16 +--- drivers/block/mtip32xx/mtip32xx.c | 1 + drivers/block/rsxx/core.c | 1 - drivers/mmc/core/queue.c | 2 + drivers/nvme/host/core.c | 3 +- drivers/nvme/host/pci.c | 6 ++ drivers/nvme/host/rdma.c | 152 ++++++++++++++++++++++++-------------- drivers/nvme/host/tcp.c | 57 ++++++++++++-- drivers/nvme/target/io-cmd-bdev.c | 1 + include/linux/cgroup-defs.h | 3 + kernel/cgroup/cgroup.c | 33 ++++++++- 20 files changed, 251 insertions(+), 92 deletions(-) -- Jens Axboe