Lines Matching refs:work_struct
114 struct work_struct work;
123 struct work_struct work;
211 static inline struct delayed_work *to_delayed_work(struct work_struct *work) in to_delayed_work()
216 static inline struct rcu_work *to_rcu_work(struct work_struct *work) in to_rcu_work()
222 struct work_struct work;
251 struct work_struct n = __WORK_INITIALIZER(n, f)
260 extern void __init_work(struct work_struct *work, int onstack);
261 extern void destroy_work_on_stack(struct work_struct *work);
263 static inline unsigned int work_static(struct work_struct *work) in work_static()
268 static inline void __init_work(struct work_struct *work, int onstack) { } in __init_work()
269 static inline void destroy_work_on_stack(struct work_struct *work) { } in destroy_work_on_stack()
271 static inline unsigned int work_static(struct work_struct *work) { return 0; } in work_static()
587 struct work_struct *work);
589 struct work_struct *work);
603 extern bool flush_work(struct work_struct *work);
604 extern bool cancel_work(struct work_struct *work);
605 extern bool cancel_work_sync(struct work_struct *work);
611 extern bool disable_work(struct work_struct *work);
612 extern bool disable_work_sync(struct work_struct *work);
613 extern bool enable_work(struct work_struct *work);
625 extern struct work_struct *current_work(void);
628 extern unsigned int work_busy(struct work_struct *work);
660 struct work_struct *work) in queue_work()
702 static inline bool schedule_work_on(int cpu, struct work_struct *work) in schedule_work_on()
721 static inline bool schedule_work(struct work_struct *work) in schedule_work()
743 struct work_struct *work) in enable_and_queue_work()