Commit 9e495db1a1f931e82c9edccd677dd171be5b85d2

Authored by Jens Axboe
1 parent e98ef89b30

cfq: fix recursive call in cfq_blkiocg_update_completion_stats()

e98ef89b has a typo, causing cfq_blkiocg_update_completion_stats()
to call itself instead of blkiocg_update_completion_stats().

Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -63,7 +63,7 @@
63 63  
64 64 static inline void cfq_blkiocg_update_completion_stats(struct blkio_group *blkg, uint64_t start_time, uint64_t io_start_time, bool direction, bool sync)
65 65 {
66   - cfq_blkiocg_update_completion_stats(blkg, start_time, io_start_time,
  66 + blkiocg_update_completion_stats(blkg, start_time, io_start_time,
67 67 direction, sync);
68 68 }
69 69