diff options
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r-- | include/linux/workqueue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 426c39c2aaa4..a3d7556510c3 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
@@ -109,6 +109,9 @@ struct work_struct { | |||
109 | struct delayed_work { | 109 | struct delayed_work { |
110 | struct work_struct work; | 110 | struct work_struct work; |
111 | struct timer_list timer; | 111 | struct timer_list timer; |
112 | |||
113 | /* target workqueue and CPU ->timer uses to queue ->work */ | ||
114 | struct workqueue_struct *wq; | ||
112 | int cpu; | 115 | int cpu; |
113 | }; | 116 | }; |
114 | 117 | ||