aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org> 2024-03-11 13:05:19 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org> 2024-03-11 13:05:19 -0700
commit1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f (patch)
treea07edd9fd3601a18203219020f326300f7205dc8 /include
parentMerge tag 'wq-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq (diff)
parentusb: core: hcd: Convert from tasklet to BH workqueue (diff)
downloadlinux-1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f.tar.gz
linux-1a1e09890cf8fb2e088dab4e4f332cfb85d9b47f.tar.bz2
linux-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')
-rw-r--r--include/linux/usb/hcd.h2
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;
};