summaryrefslogtreecommitdiffstats
path: root/block/blk-merge.c
Commit message (Expand)AuthorAgeFilesLines
* block: fix discard request mergeMing Lei2021-07-141-2/+6
* block: recalculate segment count for multi-segment discards correctlyDavid Jeffery2021-03-301-0/+8
* dm: fix IO splittingMike Snitzer2020-12-041-1/+1
* block: move blk_mq_sched_try_merge to blk-merge.cChristoph Hellwig2020-10-061-12/+50
* block: Remove a duplicative conditionBaolin Wang2020-09-011-4/+2
* block: Add a new helper to attempt to merge a bioBaolin Wang2020-09-011-51/+53
* block: Move blk_mq_bio_list_merge() into blk-merge.cBaolin Wang2020-09-011-0/+44
* block: Move bio merge related functions into blk-merge.cBaolin Wang2020-09-011-0/+157
* block: fix get_max_io_size()Keith Busch2020-08-211-1/+1
* block: respect queue limit of max discard segmentMing Lei2020-08-171-2/+9
* Merge tag 'uninit-macro-v5.9-rc1' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2020-08-041-1/+1
|\
| * treewide: Remove uninitialized_var() usageKees Cook2020-07-161-1/+1
* | block: rename generic_make_request to submit_bio_noacctChristoph Hellwig2020-07-011-1/+1
* | block: remove the request_queue argument from blk_queue_splitChristoph Hellwig2020-07-011-11/+10
* | blktrace: Provide event for request mergingJan Kara2020-06-251-0/+2
|/
* block: reduce part_stat_lock() scopeChristoph Hellwig2020-05-271-1/+2
* block: account merge of two requestsKonstantin Khlebnikov2020-05-271-7/+5
* block: don't call part_{inc,dec}_in_flight for blk-mq devicesChristoph Hellwig2020-05-191-2/+0
* block: Inline encryption support for blk-mqSatya Tangirala2020-05-141-0/+11
* block: replace BIO_QUEUE_ENTERED with BIO_CGROUP_ACCTChristoph Hellwig2020-04-291-10/+0
* block: move dma_pad handling from blk_rq_map_sg into the callersChristoph Hellwig2020-04-221-8/+0
* block: move dma drain handling to scsiChristoph Hellwig2020-04-221-14/+0
* block: provide a blk_rq_map_sg variant that returns the last elementChristoph Hellwig2020-04-221-13/+12
* block: remove RQF_COPY_USERChristoph Hellwig2020-04-221-2/+1
* block: fix get_max_segment_size() overflow on 32bit archMing Lei2020-01-141-2/+7
* block: fix splitting segments on boundary masksMing Lei2019-12-301-9/+9
* Revert "block: split bio if the only bvec's length is > SZ_4K"Jens Axboe2019-11-211-1/+1
* block: split bio if the only bvec's length is > SZ_4KMing Lei2019-11-081-1/+1
* block: still try to split bio if the bvec crosses pagesMing Lei2019-11-081-1/+2
* block: avoid blk_bio_segment_split for small I/O operationsChristoph Hellwig2019-11-041-1/+15
* block: Improve physical block alignment of split biosBart Van Assche2019-08-041-4/+17
* block: Simplify blk_bio_segment_split()Bart Van Assche2019-08-041-35/+33
* block: Simplify bvec_split_segs()Bart Van Assche2019-08-041-9/+7
* block: Document the bio splitting functionsBart Van Assche2019-08-041-0/+43
* block: Declare several function pointer arguments 'const'Bart Van Assche2019-08-041-3/+4
* block: nr_phys_segments needs to be zero for REQ_OP_WRITE_ZEROESChristoph Hellwig2019-07-031-1/+1
* block: untangle the end of blk_bio_segment_splitChristoph Hellwig2019-06-201-11/+3
* block: simplify blk_recalc_rq_segmentsChristoph Hellwig2019-06-201-15/+6
* block: remove the bi_phys_segments field in struct bioChristoph Hellwig2019-06-201-48/+27
* block: remove the bi_seg_{front,back}_size fields in struct bioChristoph Hellwig2019-05-231-82/+12
* block: remove the segment size check in bio_will_gapChristoph Hellwig2019-05-231-18/+1
* block: don't decrement nr_phys_segments for physically contigous segmentsChristoph Hellwig2019-05-231-22/+1
* block: avoid scatterlist offsets > PAGE_SIZEChristoph Hellwig2019-04-221-1/+13
* block: rewrite blk_bvec_map_sg to avoid a nth_page callChristoph Hellwig2019-04-121-15/+6
* block: fix build warning in merging bvecsMing Lei2019-04-081-6/+10
* block: don't check if adjacent bvecs in one bio can be mergeableMing Lei2019-04-011-27/+42
* block: reuse __blk_bvec_map_sg() for mapping page sized bvecMing Lei2019-04-011-11/+9
* block: remove argument of 'request_queue' from __blk_bvec_map_sgMing Lei2019-04-011-3/+3
* block: don't merge adjacent bvecs to one segment in bio blk_queue_splitMing Lei2019-04-011-17/+0
* block: fix segment calculation for passthrough IOMing Lei2019-03-061-7/+8