cfq-iosched: Get rid of redundant function parameter "create"

Nobody seems to be using cfq_find_alloc_cfqg() function parameter "create".
Get rid of that.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
Vivek Goyal 2011-05-19 15:38:21 -04:00 committed by Jens Axboe
parent a23e686955
commit 3e59cf9d66

View file

@ -1015,7 +1015,7 @@ void cfq_update_blkio_group_weight(void *key, struct blkio_group *blkg,
} }
static struct cfq_group * cfq_find_alloc_cfqg(struct cfq_data *cfqd, static struct cfq_group * cfq_find_alloc_cfqg(struct cfq_data *cfqd,
struct blkio_cgroup *blkcg, int create) struct blkio_cgroup *blkcg)
{ {
struct cfq_group *cfqg = NULL; struct cfq_group *cfqg = NULL;
void *key = cfqd; void *key = cfqd;
@ -1030,7 +1030,7 @@ static struct cfq_group * cfq_find_alloc_cfqg(struct cfq_data *cfqd,
cfqg->blkg.dev = MKDEV(major, minor); cfqg->blkg.dev = MKDEV(major, minor);
goto done; goto done;
} }
if (cfqg || !create) if (cfqg)
goto done; goto done;
cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node); cfqg = kzalloc_node(sizeof(*cfqg), GFP_ATOMIC, cfqd->queue->node);
@ -1073,18 +1073,18 @@ static struct cfq_group * cfq_find_alloc_cfqg(struct cfq_data *cfqd,
} }
/* /*
* Search for the cfq group current task belongs to. If create = 1, then also * Search for the cfq group current task belongs to. request_queue lock must
* create the cfq group if it does not exist. request_queue lock must be held. * be held.
*/ */
static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
{ {
struct blkio_cgroup *blkcg; struct blkio_cgroup *blkcg;
struct cfq_group *cfqg = NULL; struct cfq_group *cfqg = NULL;
rcu_read_lock(); rcu_read_lock();
blkcg = task_blkio_cgroup(current); blkcg = task_blkio_cgroup(current);
cfqg = cfq_find_alloc_cfqg(cfqd, blkcg, create); cfqg = cfq_find_alloc_cfqg(cfqd, blkcg);
if (!cfqg && create) if (!cfqg)
cfqg = &cfqd->root_group; cfqg = &cfqd->root_group;
rcu_read_unlock(); rcu_read_unlock();
return cfqg; return cfqg;
@ -1176,7 +1176,7 @@ void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
} }
#else /* GROUP_IOSCHED */ #else /* GROUP_IOSCHED */
static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd, int create) static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
{ {
return &cfqd->root_group; return &cfqd->root_group;
} }
@ -2911,7 +2911,7 @@ cfq_find_alloc_queue(struct cfq_data *cfqd, bool is_sync,
struct cfq_group *cfqg; struct cfq_group *cfqg;
retry: retry:
cfqg = cfq_get_cfqg(cfqd, 1); cfqg = cfq_get_cfqg(cfqd);
cic = cfq_cic_lookup(cfqd, ioc); cic = cfq_cic_lookup(cfqd, ioc);
/* cic always exists here */ /* cic always exists here */
cfqq = cic_to_cfqq(cic, is_sync); cfqq = cic_to_cfqq(cic, is_sync);