aboutsummaryrefslogtreecommitdiff
path: root/block/blk-iocost.c
AgeCommit message (Expand)AuthorFilesLines
2022-12-25treewide: Convert del_timer*() to timer_shutdown*()Gravatar Steven Rostedt (Google) 1-1/+1
2022-12-14block/blk-iocost (gcc13): keep large values in a new enumGravatar Jiri Slaby (SUSE) 1-0/+2
2022-12-01blk-iocost: Correct comment in blk_iocost_initGravatar Kemeng Shi 1-1/+1
2022-12-01blk-iocost: Remove vrate member in struct ioc_nowGravatar Kemeng Shi 1-3/+3
2022-12-01blk-iocost: Trace vtime_base_rate instead of vtime_rateGravatar Kemeng Shi 1-1/+1
2022-12-01blk-iocost: Reset vtime_base_rate in ioc_refresh_paramsGravatar Kemeng Shi 1-1/+3
2022-12-01blk-iocost: Fix typo in commentGravatar Kemeng Shi 1-1/+1
2022-10-23blk-iocost: read 'ioc->params' inside 'ioc->lock' in ioc_timer_fn()Gravatar Yu Kuai 1-2/+4
2022-10-23blk-iocost: prevent configuration update concurrent with io throttlingGravatar Yu Kuai 1-2/+24
2022-10-23blk-iocost: don't release 'ioc->lock' while updating paramsGravatar Yu Kuai 1-5/+2
2022-10-23blk-iocost: disable writeback throttlingGravatar Yu Kuai 1-0/+2
2022-09-26blk-cgroup: pass a gendisk to blkcg_schedule_throttleGravatar Christoph Hellwig 1-2/+2
2022-09-26blk-iocost: cleanup ioc_qos_writeGravatar Christoph Hellwig 1-6/+8
2022-09-26blk-iocost: pass a gendisk to blk_iocost_initGravatar Christoph Hellwig 1-3/+4
2022-09-26blk-iocost: simplify ioc_nameGravatar Christoph Hellwig 1-9/+5
2022-09-20blk-iocost: Remove unnecessary (void*) conversionsGravatar Li zeming 1-1/+1
2022-07-20block: don't allow the same type rq_qos add more than onceGravatar Jinke Han 1-7/+13
2022-06-27blk-iocost: Simplify ioc_rqos_done()Gravatar Bart Van Assche 1-1/+1
2022-05-23Merge tag 'for-5.19/block-2022-05-22' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-42/+34
2022-05-17blk-cgroup: always terminate io.stat linesGravatar Wolfgang Bumiller 1-3/+2
2022-05-11blk-iocost: combine local_stat and desc_stat to statGravatar Chengming Zhou 1-39/+32
2022-04-27iocost: don't reset the inuse weight of under-weighted debtorsGravatar Tejun Heo 1-1/+11
2022-02-11block: partition include/linux/blk-cgroup.hGravatar Ming Lei 1-1/+1
2021-12-14iocost: Fix divide-by-zero on donation from low hweight cgroupGravatar Tejun Heo 1-1/+8
2021-10-18block: convert the rest of block to bdev_get_queueGravatar Pavel Begunkov 1-6/+6
2021-08-30Merge tag 'for-5.15/block-2021-08-30' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-14/+9
2021-08-16blk-cgroup: stop using seq_get_bufGravatar Christoph Hellwig 1-14/+9
2021-08-09blk-iocost: fix lockdep warning on blkcg->lockGravatar Ming Lei 1-4/+4
2021-07-27blk-iocost: fix operation ordering in iocg_wake_fn()Gravatar Tejun Heo 1-5/+6
2021-05-11blk-iocost: fix weight updates of inner active iocgsGravatar Tejun Heo 1-2/+12
2021-04-26blk-iocost: don't ignore vrate_min on QD contentionGravatar Tejun Heo 1-4/+0
2021-01-05blk-iocost: fix NULL iocg deref from racing against initializationGravatar Tejun Heo 1-5/+11
2020-12-17blk-iocost: Add iocg idle state tracepointGravatar Baolin Wang 1-0/+3
2020-12-07blk-iocost: Factor out the base vrate change into a separate functionGravatar Baolin Wang 1-45/+54
2020-12-07blk-iocost: Factor out the active iocgs' state check into a separate functionGravatar Baolin Wang 1-40/+54
2020-12-07blk-iocost: Move the usage ratio calculation to the correct placeGravatar Baolin Wang 1-21/+23
2020-12-07blk-iocost: Remove unnecessary advance declarationGravatar Baolin Wang 1-2/+0
2020-12-07blk-iocost: Fix some typos in commentsGravatar Baolin Wang 1-6/+6
2020-12-01block: simplify bdev/disk lookup in blkdev_getGravatar Christoph Hellwig 1-18/+18
2020-10-09block: use helper function to test queue registerGravatar Yufen Yu 1-1/+1
2020-10-08block: Remove redundant 'return' statementGravatar Baolin Wang 1-1/+1
2020-09-25iocost: consider iocgs with active delays for debt forgivenessGravatar Tejun Heo 1-4/+7
2020-09-25iocost: add iocg_forgive_debt tracepointGravatar Tejun Heo 1-0/+12
2020-09-25iocost: reimplement debt forgiveness using average usageGravatar Tejun Heo 1-25/+69
2020-09-25iocost: recalculate delay after debt reductionGravatar Tejun Heo 1-1/+3
2020-09-25iocost: replace nr_shortages cond in ioc_forgive_debts() with busy_level oneGravatar Tejun Heo 1-8/+5
2020-09-25iocost: factor out ioc_forgive_debts()Gravatar Tejun Heo 1-31/+35
2020-09-14iocost: fix infinite loop bug in adjust_inuse_and_calc_cost()Gravatar Tejun Heo 1-3/+9
2020-09-11blk-iocost: fix divide-by-zero in transfer_surpluses()Gravatar Tejun Heo 1-4/+10
2020-09-01blk-iocost: add three debug stat - cost.wait, indebt and indelayGravatar Tejun Heo 1-5/+72