Lines Matching refs:work_struct
20 struct work_struct;
21 typedef void (*work_func_t)(struct work_struct *work);
102 struct work_struct { struct
116 struct work_struct work; argument
125 struct work_struct work;
158 static inline struct delayed_work *to_delayed_work(struct work_struct *work) in to_delayed_work()
163 static inline struct rcu_work *to_rcu_work(struct work_struct *work) in to_rcu_work()
169 struct work_struct work;
198 struct work_struct n = __WORK_INITIALIZER(n, f)
207 extern void __init_work(struct work_struct *work, int onstack);
208 extern void destroy_work_on_stack(struct work_struct *work);
210 static inline unsigned int work_static(struct work_struct *work) in work_static()
215 static inline void __init_work(struct work_struct *work, int onstack) { } in __init_work()
216 static inline void destroy_work_on_stack(struct work_struct *work) { } in destroy_work_on_stack()
218 static inline unsigned int work_static(struct work_struct *work) { return 0; } in work_static()
445 struct work_struct *work);
447 struct work_struct *work);
461 extern bool flush_work(struct work_struct *work);
462 extern bool cancel_work_sync(struct work_struct *work);
472 extern struct work_struct *current_work(void);
475 extern unsigned int work_busy(struct work_struct *work);
492 struct work_struct *work) in queue_work()
534 static inline bool schedule_work_on(int cpu, struct work_struct *work) in schedule_work_on()
550 static inline bool schedule_work(struct work_struct *work) in schedule_work()