aboutsummaryrefslogtreecommitdiff
path: root/block/blk-mq.c
AgeCommit message (Expand)AuthorFilesLines
2020-08-21blk-mq: insert request not through ->queue_rq into sw/scheduler queueGravatar Ming Lei 1-1/+2
2020-08-17blk-mq: order adding requests to hctx->dispatch and checking SCHED_RESTARTGravatar Ming Lei 1-0/+9
2020-08-16block: blk-mq.c: fix @at_head kernel-doc warningGravatar Randy Dunlap 1-0/+1
2020-08-03Merge tag 'for-5.9/block-20200802' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-140/+256
2020-07-31block: blk-mq: delete duplicated wordGravatar Randy Dunlap 1-1/+1
2020-07-28block: Use non _rcu version of list functions for tag_set_listGravatar Daniel Wagner 1-2/+2
2020-07-10blk-mq: remove redundant validation in __blk_mq_end_request()Gravatar Baolin Wang 1-2/+1
2020-07-08blk-mq: centralise related handling into blk_mq_get_driver_tagGravatar Ming Lei 1-16/+15
2020-07-08blk-mq: streamline handling of q->mq_ops->queue_rq resultGravatar Ming Lei 1-13/+11
2020-07-07blk-mq: consider non-idle request as "inflight" in blk_mq_rq_inflight()Gravatar Ming Lei 1-2/+2
2020-07-01Revert "blk-mq: put driver tag when this request is completed"Gravatar Jens Axboe 1-36/+16
2020-07-01block: move ->make_request_fn to struct block_device_operationsGravatar Christoph Hellwig 1-5/+5
2020-07-01block: remove the request_queue argument from blk_queue_splitGravatar Christoph Hellwig 1-1/+1
2020-06-30blk-mq: centralise related handling into blk_mq_get_driver_tagGravatar Ming Lei 1-16/+14
2020-06-30blk-mq: move blk_mq_put_driver_tag() into blk-mq.cGravatar Ming Lei 1-0/+20
2020-06-30blk-mq: move blk_mq_get_driver_tag into blk-mq.cGravatar Ming Lei 1-0/+34
2020-06-30blk-mq: support batching dispatch in case of ioGravatar Ming Lei 1-2/+0
2020-06-30blk-mq: pass obtained budget count to blk_mq_dispatch_rq_listGravatar Ming Lei 1-4/+27
2020-06-30blk-mq: remove dead check from blk_mq_dispatch_rq_listGravatar Ming Lei 1-7/+0
2020-06-30blk-mq: move getting driver tag and budget into one helperGravatar Ming Lei 1-26/+40
2020-06-30blk-mq: pass hctx to blk_mq_dispatch_rq_listGravatar Ming Lei 1-3/+3
2020-06-30blk-mq: pass request queue into get/put budget callbackGravatar Ming Lei 1-4/+4
2020-06-29blk-mq: remove the BLK_MQ_REQ_INTERNAL flagGravatar Christoph Hellwig 1-7/+3
2020-06-29blk-mq: put driver tag when this request is completedGravatar Ming Lei 1-0/+2
2020-06-24blk-mq: add a new blk_mq_complete_request_remote APIGravatar Christoph Hellwig 1-19/+26
2020-06-24blk-mq: factor out a blk_mq_complete_need_ipi helperGravatar Christoph Hellwig 1-18/+21
2020-06-24blk-mq: remove the get_cpu/put_cpu pair in blk_mq_complete_requestGravatar Christoph Hellwig 1-2/+1
2020-06-24blk-mq: move failure injection out of blk_mq_complete_requestGravatar Christoph Hellwig 1-27/+7
2020-06-24blk-mq: merge the softirq vs non-softirq IPI logicGravatar Christoph Hellwig 1-65/+20
2020-06-24blk-mq: short cut the IPI path in blk_mq_force_complete_rq for !SMPGravatar Christoph Hellwig 1-1/+2
2020-06-24blk-mq: complete polled requests directlyGravatar Christoph Hellwig 1-6/+11
2020-06-24blk-mq: remove raise_blk_irqGravatar Christoph Hellwig 1-30/+10
2020-06-24blk-mq: factor out a helper to reise the block softirqGravatar Christoph Hellwig 1-17/+14
2020-06-24blk-mq: merge blk-softirq.c into blk-mq.cGravatar Christoph Hellwig 1-0/+135
2020-06-17block: update hctx map when use multiple mapsGravatar Weiping Zhang 1-1/+3
2020-06-07blk-mq: split out a __blk_mq_get_driver_tag helperGravatar Christoph Hellwig 1-29/+0
2020-05-29blk-mq: drain I/O when all CPUs in a hctx are offlineGravatar Ming Lei 1-2/+110
2020-05-29blk-mq: open code __blk_mq_alloc_request in blk_mq_alloc_request_hctxGravatar Christoph Hellwig 1-21/+23
2020-05-29blk-mq: use BLK_MQ_NO_TAG in more placesGravatar Christoph Hellwig 1-7/+7
2020-05-29blk-mq: rename BLK_MQ_TAG_FAIL to BLK_MQ_NO_TAGGravatar Christoph Hellwig 1-1/+1
2020-05-29blk-mq: move more request initialization to blk_mq_rq_ctx_initGravatar Christoph Hellwig 1-17/+19
2020-05-29blk-mq: simplify the blk_mq_get_request calling conventionGravatar Christoph Hellwig 1-14/+22
2020-05-29blk-mq: remove the bio argument to ->prepare_requestGravatar Christoph Hellwig 1-1/+1
2020-05-29blk-mq: blk-mq: provide forced completion methodGravatar Keith Busch 1-2/+13
2020-05-27block: add a blk_account_io_merge_bio helperGravatar Konstantin Khlebnikov 1-1/+1
2020-05-19blk-mq: allow blk_mq_make_request to consume the q_usage_counter referenceGravatar Christoph Hellwig 1-6/+7
2020-05-19blk-mq: remove a pointless queue enter pair in blk_mq_alloc_request_hctxGravatar Christoph Hellwig 1-3/+0
2020-05-19blk-mq: remove a pointless queue enter pair in blk_mq_alloc_requestGravatar Christoph Hellwig 1-3/+0
2020-05-19blk-mq: move the call to blk_queue_enter_live out of blk_mq_get_requestGravatar Christoph Hellwig 1-11/+16
2020-05-14block: Inline encryption support for blk-mqGravatar Satya Tangirala 1-0/+13