aboutsummaryrefslogtreecommitdiff
path: root/block/blk-mq.c
AgeCommit message (Expand)AuthorFilesLines
2022-08-19blk-mq: fix io hung due to missing commit_rqsGravatar Yu Kuai 1-2/+3
2022-08-18blk-mq: run queue no matter whether the request is the last requestGravatar Yufen Yu 1-1/+1
2022-08-18blk-mq: remove unused function blk_mq_queue_stopped()Gravatar Yu Kuai 1-20/+0
2022-08-02block: pass struct queue_limits to the bio splitting helpersGravatar Christoph Hellwig 1-2/+2
2022-08-02block: change the blk_queue_bounce calling conventionGravatar Christoph Hellwig 1-1/+1
2022-08-02block: change the blk_queue_split calling conventionGravatar Christoph Hellwig 1-2/+2
2022-07-21blk-mq: fix error handling in __blk_mq_alloc_diskGravatar Christoph Hellwig 1-1/+1
2022-07-14block: Use the new blk_opf_t typeGravatar Bart Van Assche 1-7/+8
2022-07-06block: simplify blk_mq_plugGravatar Christoph Hellwig 1-1/+1
2022-07-06blk-mq: Drop 'reserved' arg of busy_tag_iter_fnGravatar John Garry 1-6/+4
2022-07-06blk-mq: Drop blk_mq_ops.timeout 'reserved' argGravatar John Garry 1-3/+3
2022-07-06blk-mq: Add a flag for reserved requestsGravatar John Garry 1-0/+6
2022-06-28blk-mq: rename blk_mq_sysfs_{,un}registerGravatar Christoph Hellwig 1-2/+2
2022-06-28block: simplify disk shutdownGravatar Christoph Hellwig 1-2/+41
2022-06-27block: Always initialize bio IO priority on submitGravatar Jan Kara 1-0/+3
2022-06-27block: Initialize bio priority earlierGravatar Jan Kara 1-2/+2
2022-06-27blk-ioprio: Convert from rqos policy to direct callGravatar Jan Kara 1-0/+8
2022-06-27blk-mq: Don't disable preemption around __blk_mq_run_hw_queue().Gravatar Sebastian Andrzej Siewior 1-5/+1
2022-06-27block: Make blk_mq_get_sq_hctx() select the proper hardware queue typeGravatar Bart Van Assche 1-1/+1
2022-06-21block: pop cached rq before potentially blocking rq_qos_throttle()Gravatar Jens Axboe 1-3/+8
2022-06-16blk-mq: don't clear flush_rq from tags->rqs[]Gravatar Ming Lei 1-2/+3
2022-06-16blk-mq: avoid to touch q->elevator without any protectionGravatar Ming Lei 1-16/+2
2022-06-16blk-mq: protect q->elevator by ->sysfs_lock in blk_mq_elv_switch_noneGravatar Ming Lei 1-1/+3
2022-06-16block: Fix handling of offline queues in blk_mq_alloc_request_hctx()Gravatar Bart Van Assche 1-0/+2
2022-06-03Merge tag 'for-5.19/block-exec-2022-06-02' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-64/+49
2022-06-03Merge tag 'for-5.19/block-2022-06-02' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-5/+5
2022-05-30blk-mq: do not update io_ticks with passthrough requestsGravatar Haisu Wang 1-1/+2
2022-05-28blk-mq: remove the done argument to blk_execute_rq_nowaitGravatar Christoph Hellwig 1-4/+1
2022-05-28blk-mq: avoid a mess of casts for blk_end_sync_rqGravatar Christoph Hellwig 1-23/+20
2022-05-28blk-mq: remove __blk_execute_rq_nowaitGravatar Christoph Hellwig 1-39/+30
2022-05-23Merge tag 'for-5.19/block-2022-05-22' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-1/+1
2022-05-23blk-mq: don't touch ->tagset in blk_mq_get_sq_hctxGravatar Ming Lei 1-4/+3
2022-05-21blk-mq: fix typo in commentGravatar Julia Lawall 1-1/+1
2022-05-12blk-mq: fix passthrough pluggingGravatar Ming Lei 1-51/+63
2022-05-11block: wire-up support for passthrough pluggingGravatar Jens Axboe 1-34/+39
2022-04-27Revert "block: inherit request start time from bio for BLK_CGROUP"Gravatar Tejun Heo 1-8/+1
2022-04-15block: don't print I/O error warning for dead disksGravatar Christoph Hellwig 1-1/+2
2022-04-01Merge tag 'for-5.18/block-2022-04-01' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-9/+16
2022-03-31block: use dedicated list iterator variableGravatar Jakob Koschel 1-9/+16
2022-03-26Merge tag 'for-5.18/write-streams-2022-03-18' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-1/+0
2022-03-21Merge tag 'for-5.18/block-2022-03-18' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-151/+152
2022-03-11block: flush plug based on hardware and software queue orderGravatar Jens Axboe 1-31/+28
2022-03-08block: don't remove hctx debugfs dir from blk_mq_exit_queueGravatar Ming Lei 1-1/+0
2022-03-08blk-mq: handle already freed tags gracefully in blk_mq_free_rqsGravatar Ming Lei 1-0/+3
2022-03-08blk-mq: do not include passthrough requests in I/O accountingGravatar Christoph Hellwig 1-3/+8
2022-03-08blk-mq: manage hctx map via xarrayGravatar Ming Lei 1-38/+24
2022-03-08blk-mq: prepare for implementing hctx table via xarrayGravatar Ming Lei 1-14/+16
2022-03-08blk-mq: reconfigure poll after queue map is changedGravatar Ming Lei 1-3/+13
2022-03-08blk-mq: simplify reallocation of hw ctxs a bitGravatar Ming Lei 1-19/+14
2022-03-08blk-mq: figure out correct numa node for hw queueGravatar Ming Lei 1-6/+30