Lines Matching refs:tasklet_struct

696 struct tasklet_struct  struct
698 struct tasklet_struct *next; argument
704 void (*callback)(struct tasklet_struct *t); argument
710 struct tasklet_struct name = { \ argument
717 struct tasklet_struct name = { \
727 struct tasklet_struct name = { \
733 struct tasklet_struct name = { \
745 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
750 void tasklet_unlock(struct tasklet_struct *t);
751 void tasklet_unlock_wait(struct tasklet_struct *t);
752 void tasklet_unlock_spin_wait(struct tasklet_struct *t);
755 static inline int tasklet_trylock(struct tasklet_struct *t) { return 1; } in tasklet_trylock()
756 static inline void tasklet_unlock(struct tasklet_struct *t) { } in tasklet_unlock()
757 static inline void tasklet_unlock_wait(struct tasklet_struct *t) { } in tasklet_unlock_wait()
758 static inline void tasklet_unlock_spin_wait(struct tasklet_struct *t) { } in tasklet_unlock_spin_wait()
761 extern void __tasklet_schedule(struct tasklet_struct *t);
763 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
769 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
771 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
777 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
787 static inline void tasklet_disable_in_atomic(struct tasklet_struct *t) in tasklet_disable_in_atomic()
794 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
801 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
807 extern void tasklet_kill(struct tasklet_struct *t);
808 extern void tasklet_init(struct tasklet_struct *t,
810 extern void tasklet_setup(struct tasklet_struct *t,
811 void (*callback)(struct tasklet_struct *));