Hi Linus, Some later additions that weren't quite done for the first pull request, and also a few fixes that have arrived since. This pull request contains: - Kill silly pktcdvd warning on attempting to register a non-scsi passthrough device (me) - Use symbolic constants for the block t10 protection types, and switch to handling it in core rather than in the drivers (Max) - libahci platform missing node put fix (Nishka) - Small series of fixes for BFQ (Paolo) - Fix possible nbd crash (Xiubo) Please pull! git://git.kernel.dk/linux-block.git tags/for-5.4/post-2019-09-24 ---------------------------------------------------------------- Jens Axboe (1): pktcdvd: remove warning on attempting to register non-passthrough dev Martin Wilck (1): block: drop device references in bsg_queue_rq() Max Gurtovoy (3): block: use symbolic constants for t10_pi type block: centralize PI remapping logic to the block layer block: t10-pi: fix -Wswitch warning Nishka Dasgupta (1): ata: libahci_platform: Add of_node_put() before loop exit Paolo Valente (4): block, bfq: update inject limit only after injection occurred block, bfq: reduce upper bound for inject limit to max_rq_in_driver+1 block, bfq: increase update frequency of inject limit block, bfq: push up injection only after setting service time Xiubo Li (2): nbd: rename the runtime flags as NBD_RT_ prefixed nbd: fix possible page fault for nbd disk block/bfq-iosched.c | 35 ++++++--- block/blk-core.c | 7 ++ block/blk-integrity.c | 11 +++ block/blk-mq.c | 6 ++ block/bsg-lib.c | 10 ++- block/t10-pi.c | 169 +++++++++++++++++++++-------------------- drivers/ata/libahci_platform.c | 9 ++- drivers/block/nbd.c | 108 +++++++++++++++++--------- drivers/block/pktcdvd.c | 1 - drivers/md/dm-integrity.c | 10 +++ drivers/nvme/host/core.c | 9 --- drivers/scsi/sd.c | 8 -- include/linux/blkdev.h | 4 + include/linux/t10-pi.h | 14 ---- 14 files changed, 237 insertions(+), 164 deletions(-) -- Jens Axboe