Lines Matching refs:tasklet_struct
484 struct tasklet_struct struct
486 struct tasklet_struct *next; argument
494 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } argument
497 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
507 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
512 static inline void tasklet_unlock(struct tasklet_struct *t) in tasklet_unlock()
518 static inline void tasklet_unlock_wait(struct tasklet_struct *t) in tasklet_unlock_wait()
528 extern void __tasklet_schedule(struct tasklet_struct *t);
530 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
536 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
538 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
544 extern void __tasklet_hi_schedule_first(struct tasklet_struct *t);
552 static inline void tasklet_hi_schedule_first(struct tasklet_struct *t) in tasklet_hi_schedule_first()
559 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
565 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
572 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
578 extern void tasklet_kill(struct tasklet_struct *t);
579 extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu);
580 extern void tasklet_init(struct tasklet_struct *t,
585 struct tasklet_struct tasklet;