mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-07 13:53:24 +00:00
cfq: rename a function to give it more appropriate name
o Rename a function to give it more approprate name. We are calculating cfq queue slice and function name gives the impression as if cfq group slice length is being calculated. Signed-off-by: Vivek Goyal <vgoyal@redhat.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
parent
68264e9d67
commit
ba5bd520f6
@ -599,7 +599,7 @@ cfq_group_slice(struct cfq_data *cfqd, struct cfq_group *cfqg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline unsigned
|
static inline unsigned
|
||||||
cfq_scaled_group_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
|
cfq_scaled_cfqq_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
|
||||||
{
|
{
|
||||||
unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
|
unsigned slice = cfq_prio_to_slice(cfqd, cfqq);
|
||||||
if (cfqd->cfq_latency) {
|
if (cfqd->cfq_latency) {
|
||||||
@ -631,7 +631,7 @@ cfq_scaled_group_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
|
|||||||
static inline void
|
static inline void
|
||||||
cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
|
cfq_set_prio_slice(struct cfq_data *cfqd, struct cfq_queue *cfqq)
|
||||||
{
|
{
|
||||||
unsigned slice = cfq_scaled_group_slice(cfqd, cfqq);
|
unsigned slice = cfq_scaled_cfqq_slice(cfqd, cfqq);
|
||||||
|
|
||||||
cfqq->slice_start = jiffies;
|
cfqq->slice_start = jiffies;
|
||||||
cfqq->slice_end = jiffies + slice;
|
cfqq->slice_end = jiffies + slice;
|
||||||
@ -1671,7 +1671,7 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
|
|||||||
*/
|
*/
|
||||||
if (timed_out) {
|
if (timed_out) {
|
||||||
if (cfq_cfqq_slice_new(cfqq))
|
if (cfq_cfqq_slice_new(cfqq))
|
||||||
cfqq->slice_resid = cfq_scaled_group_slice(cfqd, cfqq);
|
cfqq->slice_resid = cfq_scaled_cfqq_slice(cfqd, cfqq);
|
||||||
else
|
else
|
||||||
cfqq->slice_resid = cfqq->slice_end - jiffies;
|
cfqq->slice_resid = cfqq->slice_end - jiffies;
|
||||||
cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
|
cfq_log_cfqq(cfqd, cfqq, "resid=%ld", cfqq->slice_resid);
|
||||||
|
Loading…
Reference in New Issue
Block a user