Lines Matching refs:tasklet_struct
594 struct tasklet_struct struct
596 struct tasklet_struct *next; argument
602 void (*callback)(struct tasklet_struct *t); argument
608 struct tasklet_struct name = { \ argument
615 struct tasklet_struct name = { \
625 struct tasklet_struct name = { \
631 struct tasklet_struct name = { \
643 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
648 void tasklet_unlock(struct tasklet_struct *t);
649 void tasklet_unlock_wait(struct tasklet_struct *t);
650 void tasklet_unlock_spin_wait(struct tasklet_struct *t);
653 static inline int tasklet_trylock(struct tasklet_struct *t) { return 1; } in tasklet_trylock()
654 static inline void tasklet_unlock(struct tasklet_struct *t) { } in tasklet_unlock()
655 static inline void tasklet_unlock_wait(struct tasklet_struct *t) { } in tasklet_unlock_wait()
656 static inline void tasklet_unlock_spin_wait(struct tasklet_struct *t) { } in tasklet_unlock_spin_wait()
659 extern void __tasklet_schedule(struct tasklet_struct *t);
661 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
667 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
669 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
675 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
685 static inline void tasklet_disable_in_atomic(struct tasklet_struct *t) in tasklet_disable_in_atomic()
692 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
699 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
705 extern void tasklet_kill(struct tasklet_struct *t);
706 extern void tasklet_init(struct tasklet_struct *t,
708 extern void tasklet_setup(struct tasklet_struct *t,
709 void (*callback)(struct tasklet_struct *));