Lines Matching refs:tasklet_struct
487 struct tasklet_struct struct
489 struct tasklet_struct *next; argument
497 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } argument
500 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
510 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
515 static inline void tasklet_unlock(struct tasklet_struct *t) in tasklet_unlock()
521 static inline void tasklet_unlock_wait(struct tasklet_struct *t) in tasklet_unlock_wait()
531 extern void __tasklet_schedule(struct tasklet_struct *t);
533 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
539 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
541 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
547 extern void __tasklet_hi_schedule_first(struct tasklet_struct *t);
555 static inline void tasklet_hi_schedule_first(struct tasklet_struct *t) in tasklet_hi_schedule_first()
562 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
568 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
575 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
581 extern void tasklet_kill(struct tasklet_struct *t);
582 extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu);
583 extern void tasklet_init(struct tasklet_struct *t,
588 struct tasklet_struct tasklet;