diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-03-11 13:05:19 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-03-11 13:05:19 -0700 |
commit | 1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f (patch) | |
tree | a07edd9fd3601a18203219020f326300f7205dc8 /include/linux/usb | |
parent | ff887eb07cf69a5c0a507a1311fb34bcd38450aa (diff) | |
parent | 8fea0c8fda30129b4168464975505d5dc9735ac1 (diff) | |
download | linux-stable-1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f.tar.gz linux-stable-1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f.tar.bz2 linux-stable-1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f.zip |
Merge tag 'wq-for-6.9-bh-conversions' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue BH conversions from Tejun Heo:
"This contains two patches that convert tasklet users to BH workqueues:
backtracetest and usb hcd.
DM conversions are being routed through the respective subsystem tree.
Hopefully, the next cycle will see a lot more conversions"
* tag 'wq-for-6.9-bh-conversions' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq:
usb: core: hcd: Convert from tasklet to BH workqueue
backtracetest: Convert from tasklet to BH workqueue
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/hcd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h index cd77fc6095a1..ac95e7c89df5 100644 --- a/include/linux/usb/hcd.h +++ b/include/linux/usb/hcd.h @@ -55,7 +55,7 @@ struct giveback_urb_bh { bool high_prio; spinlock_t lock; struct list_head head; - struct tasklet_struct bh; + struct work_struct bh; struct usb_host_endpoint *completing_ep; }; |