diff options
author | Bart Van Assche <Bart.VanAssche@sandisk.com> | 2017-01-02 09:46:15 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-01-02 09:46:15 -0700 |
commit | f2e0a0b292682dd94274d6793d76656b41526147 (patch) | |
tree | 7923deecb9440c1b853167c0e64b39bf58a3d8a9 /block/blk-wbt.c | |
parent | 6c006a9d94bfb5cbcc5150e8fd7f45d3f92f3ee8 (diff) | |
download | linux-f2e0a0b292682dd94274d6793d76656b41526147.tar.gz linux-f2e0a0b292682dd94274d6793d76656b41526147.tar.bz2 linux-f2e0a0b292682dd94274d6793d76656b41526147.zip |
block: Make wbt_wait() definition consistent with declaration
Fixes: e34cbd307477 ("blk-wbt: add general throttling mechanism")
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/blk-wbt.c')
-rw-r--r-- | block/blk-wbt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-wbt.c b/block/blk-wbt.c index 6e82769f4042..fd28c2806406 100644 --- a/block/blk-wbt.c +++ b/block/blk-wbt.c @@ -595,7 +595,7 @@ static inline bool wbt_should_throttle(struct rq_wb *rwb, struct bio *bio) * in an irq held spinlock, if it holds one when calling this function. * If we do sleep, we'll release and re-grab it. */ -unsigned int wbt_wait(struct rq_wb *rwb, struct bio *bio, spinlock_t *lock) +enum wbt_flags wbt_wait(struct rq_wb *rwb, struct bio *bio, spinlock_t *lock) { unsigned int ret = 0; |