Commit 9481ffdc authored by Jens Axboe's avatar Jens Axboe

cfq-iosched: log responsible 'cfqq' in idle timer arm

Makes it easier to read the traces.
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent 2d870722
...@@ -936,7 +936,7 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd) ...@@ -936,7 +936,7 @@ static void cfq_arm_slice_timer(struct cfq_data *cfqd)
sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT)); sl = min(sl, msecs_to_jiffies(CFQ_MIN_TT));
mod_timer(&cfqd->idle_slice_timer, jiffies + sl); mod_timer(&cfqd->idle_slice_timer, jiffies + sl);
cfq_log(cfqd, "arm_idle: %lu", sl); cfq_log_cfqq(cfqd, cfqq, "arm_idle: %lu", sl);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment