Skip to content

Commit

Permalink
cfq-iosched: silence uninitialized variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sultanqasim committed Feb 6, 2016
1 parent 6769e3f commit 60e9f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion block/cfq-iosched.c
Original file line number Diff line number Diff line change
Expand Up @@ -3647,7 +3647,7 @@ cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
{
int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
int ioprio = IOPRIO_PRIO_DATA(cic->ioprio);
struct cfq_queue **async_cfqq;
struct cfq_queue **async_cfqq = NULL;
struct cfq_queue *cfqq;

if (!is_sync) {
Expand Down

0 comments on commit 60e9f72

Please sign in to comment.