projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa97f6c
)
Revert "block: reduce kblockd_mod_delayed_work_on() CPU consumption"
author
Jens Axboe
<axboe@kernel.dk>
Sun, 19 Dec 2021 14:58:44 +0000
(07:58 -0700)
committer
Jens Axboe
<axboe@kernel.dk>
Sun, 19 Dec 2021 14:58:44 +0000
(07:58 -0700)
This reverts commit
cb2ac2912a9ca7d3d26291c511939a41361d2d83
.
Alex and the kernel test robot report that this causes a significant
performance regression with BFQ. I can reproduce that result, so let's
revert this one as we're close to -rc6 and we there's no point in trying
to rush a fix.
Link:
https://lore.kernel.org/linux-block/1639853092.524jxfaem2.none@localhost/
Link:
https://lore.kernel.org/lkml/20211219141852.GH14057@xsang-OptiPlex-9020/
Reported-by: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>
Reported-by: kernel test robot <oliver.sang@intel.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-core.c
patch
|
blob
|
history
diff --git
a/block/blk-core.c
b/block/blk-core.c
index c1833f95cb9728eb3023255fc4e0c42711ded297..1378d084c770f6641a911caf8d98d302026fa689 100644
(file)
--- a/
block/blk-core.c
+++ b/
block/blk-core.c
@@
-1484,8
+1484,6
@@
EXPORT_SYMBOL(kblockd_schedule_work);
int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork,
unsigned long delay)
{
- if (!delay)
- return queue_work_on(cpu, kblockd_workqueue, &dwork->work);
return mod_delayed_work_on(cpu, kblockd_workqueue, dwork, delay);
}
EXPORT_SYMBOL(kblockd_mod_delayed_work_on);