Lines Matching refs:work_struct
19 struct work_struct;
20 typedef void (*work_func_t)(struct work_struct *work);
101 struct work_struct { struct
115 struct work_struct work; argument
149 static inline struct delayed_work *to_delayed_work(struct work_struct *work) in to_delayed_work()
155 struct work_struct work;
185 struct work_struct n = __WORK_INITIALIZER(n, f)
194 extern void __init_work(struct work_struct *work, int onstack);
195 extern void destroy_work_on_stack(struct work_struct *work);
197 static inline unsigned int work_static(struct work_struct *work) in work_static()
202 static inline void __init_work(struct work_struct *work, int onstack) { } in __init_work()
203 static inline void destroy_work_on_stack(struct work_struct *work) { } in destroy_work_on_stack()
205 static inline unsigned int work_static(struct work_struct *work) { return 0; } in work_static()
447 struct work_struct *work);
460 extern bool flush_work(struct work_struct *work);
461 extern bool cancel_work(struct work_struct *work);
462 extern bool cancel_work_sync(struct work_struct *work);
470 extern struct work_struct *current_work(void);
473 extern unsigned int work_busy(struct work_struct *work);
489 struct work_struct *work) in queue_work()
531 static inline bool schedule_work_on(int cpu, struct work_struct *work) in schedule_work_on()
547 static inline bool schedule_work(struct work_struct *work) in schedule_work()