summaryrefslogtreecommitdiffstats
path: root/block/blk-throttle.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-09-07 14:59:42 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-09-07 14:59:42 -0400
commita0725ab0c7536076d5477264420ef420ebb64501 (patch)
tree5c972d46c7f58f634ad74c6e4bc7a2bee24e5956 /block/blk-throttle.c
parent3ee31b89d9b12c01aa03dda7a923ef07a800eedd (diff)
parentef13ecbc134d7e0ca4ab4834d08bd20885b53c62 (diff)
Merge branch 'for-4.14/block' of git://git.kernel.dk/linux-block
Pull block layer updates from Jens Axboe: "This is the first pull request for 4.14, containing most of the code changes. It's a quiet series this round, which I think we needed after the churn of the last few series. This contains: - Fix for a registration race in loop, from Anton Volkov. - Overflow complaint fix from Arnd for DAC960. - Series of drbd changes from the usual suspects. - Conversion of the stec/skd driver to blk-mq. From Bart. - A few BFQ improvements/fixes from Paolo. - CFQ improvement from Ritesh, allowing idling for group idle. - A few fixes found by Dan's smatch, courtesy of Dan. - A warning fixup for a race between changing the IO scheduler and device remova. From David Jeffery. - A few nbd fixes from Josef. - Support for cgroup info in blktrace, from Shaohua. - Also from Shaohua, new features in the null_blk driver to allow it to actually hold data, among other things. - Various corner cases and error handling fixes from Weiping Zhang. - Improvements to the IO stats tracking for blk-mq from me. Can drastically improve performance for fast devices and/or big machines. - Series from Christoph removing bi_bdev as being needed for IO submission, in preparation for nvme multipathing code. - Series from Bart, including various cleanups and fixes for switch fall through case complaints" * 'for-4.14/block' of git://git.kernel.dk/linux-block: (162 commits) kernfs: checking for IS_ERR() instead of NULL drbd: remove BIOSET_NEED_RESCUER flag from drbd_{md_,}io_bio_set drbd: Fix allyesconfig build, fix recent commit drbd: switch from kmalloc() to kmalloc_array() drbd: abort drbd_start_resync if there is no connection drbd: move global variables to drbd namespace and make some static drbd: rename "usermode_helper" to "drbd_usermode_helper" drbd: fix race between handshake and admin disconnect/down drbd: fix potential deadlock when trying to detach during handshake drbd: A single dot should be put into a sequence. drbd: fix rmmod cleanup, remove _all_ debugfs entries drbd: Use setup_timer() instead of init_timer() to simplify the code. drbd: fix potential get_ldev/put_ldev refcount imbalance during attach drbd: new disk-option disable-write-same drbd: Fix resource role for newly created resources in events2 drbd: mark symbols static where possible drbd: Send P_NEG_ACK upon write error in protocol != C drbd: add explicit plugging when submitting batches drbd: change list_for_each_safe to while(list_first_entry_or_null) drbd: introduce drbd_recv_header_maybe_unplug ...
Diffstat (limited to 'block/blk-throttle.c')
-rw-r--r--block/blk-throttle.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c
index 80f5481fe9f6..0fea76aa0f3f 100644
--- a/block/blk-throttle.c
+++ b/block/blk-throttle.c
@@ -373,10 +373,8 @@ static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
373 if (likely(!blk_trace_note_message_enabled(__td->queue))) \ 373 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
374 break; \ 374 break; \
375 if ((__tg)) { \ 375 if ((__tg)) { \
376 char __pbuf[128]; \ 376 blk_add_cgroup_trace_msg(__td->queue, \
377 \ 377 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
378 blkg_path(tg_to_blkg(__tg), __pbuf, sizeof(__pbuf)); \
379 blk_add_trace_msg(__td->queue, "throtl %s " fmt, __pbuf, ##args); \
380 } else { \ 378 } else { \
381 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \ 379 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
382 } \ 380 } \
@@ -2114,14 +2112,9 @@ static inline void throtl_update_latency_buckets(struct throtl_data *td)
2114static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio) 2112static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2115{ 2113{
2116#ifdef CONFIG_BLK_DEV_THROTTLING_LOW 2114#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2117 int ret; 2115 if (bio->bi_css)
2118
2119 ret = bio_associate_current(bio);
2120 if (ret == 0 || ret == -EBUSY)
2121 bio->bi_cg_private = tg; 2116 bio->bi_cg_private = tg;
2122 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio)); 2117 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
2123#else
2124 bio_associate_current(bio);
2125#endif 2118#endif
2126} 2119}
2127 2120