Lines Matching refs:tasklet_struct
609 struct tasklet_struct struct
611 struct tasklet_struct *next; argument
617 void (*callback)(struct tasklet_struct *t); argument
623 struct tasklet_struct name = { \ argument
630 struct tasklet_struct name = { \
640 struct tasklet_struct name = { \
646 struct tasklet_struct name = { \
658 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
663 static inline void tasklet_unlock(struct tasklet_struct *t) in tasklet_unlock()
669 static inline void tasklet_unlock_wait(struct tasklet_struct *t) in tasklet_unlock_wait()
679 extern void __tasklet_schedule(struct tasklet_struct *t);
681 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
687 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
689 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
695 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
701 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
708 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
714 extern void tasklet_kill(struct tasklet_struct *t);
715 extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu);
716 extern void tasklet_init(struct tasklet_struct *t,
718 extern void tasklet_setup(struct tasklet_struct *t,
719 void (*callback)(struct tasklet_struct *));