diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-22 21:53:05 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-22 21:53:05 +0300 |
commit | ae42c3173ba5cbe12fab0dad330e997c4ff9f68a (patch) | |
tree | 3900a15300c74af76828a9c5fe44d7b6531932ec /include/linux/blkdev.h | |
parent | d652ea30ba32db12fe8365182fad5ba2e7c22822 (diff) | |
parent | f9ab49184af093f0bf6c0e6583f5b25da2c09ff5 (diff) | |
download | linux-ae42c3173ba5cbe12fab0dad330e997c4ff9f68a.tar.xz |
Merge tag 'for-5.12/block-ipi-2021-02-21' of git://git.kernel.dk/linux-block
Pull block IPI updates from Jens Axboe:
"Avoid IRQ locking for the block IPI handling (Sebastian Andrzej
Siewior)"
* tag 'for-5.12/block-ipi-2021-02-21' of git://git.kernel.dk/linux-block:
blk-mq: Use llist_head for blk_cpu_done
blk-mq: Always complete remote completions requests in softirq
smp: Process pending softirqs in flush_smp_call_function_from_idle()
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 9149f4a5adb3..69035e9f632b 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -153,7 +153,7 @@ struct request { */ union { struct hlist_node hash; /* merge hash */ - struct list_head ipi_list; + struct llist_node ipi_list; }; /* |