projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee3c5db
)
block: ensure that the timer is always added
author
Jens Axboe
<axboe@fb.com>
Fri, 30 May 2014 21:41:39 +0000
(15:41 -0600)
committer
Jens Axboe
<axboe@fb.com>
Fri, 30 May 2014 21:41:39 +0000
(15:41 -0600)
Commit
f793aa537866
relaxed the timer addition a little too much.
If the timer isn't pending, we always need to add it.
Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-timeout.c
patch
|
blob
|
history
diff --git
a/block/blk-timeout.c
b/block/blk-timeout.c
index
43e8b51
..
95a0959
100644
(file)
--- a/
block/blk-timeout.c
+++ b/
block/blk-timeout.c
@@
-224,7
+224,7
@@
void blk_add_timer(struct request *req)
* modifying the timer because expires for value X
* will be X + something.
*/
- if (
diff >= HZ / 2
)
+ if (
!timer_pending(&q->timeout) || (diff >= HZ / 2)
)
mod_timer(&q->timeout, expiry);
}