Lines Matching refs:tasklet_struct
542 struct tasklet_struct struct
544 struct tasklet_struct *next; argument
552 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } argument
555 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
565 static inline int tasklet_trylock(struct tasklet_struct *t) in tasklet_trylock()
570 static inline void tasklet_unlock(struct tasklet_struct *t) in tasklet_unlock()
576 static inline void tasklet_unlock_wait(struct tasklet_struct *t) in tasklet_unlock_wait()
586 extern void __tasklet_schedule(struct tasklet_struct *t);
588 static inline void tasklet_schedule(struct tasklet_struct *t) in tasklet_schedule()
594 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
596 static inline void tasklet_hi_schedule(struct tasklet_struct *t) in tasklet_hi_schedule()
602 static inline void tasklet_disable_nosync(struct tasklet_struct *t) in tasklet_disable_nosync()
608 static inline void tasklet_disable(struct tasklet_struct *t) in tasklet_disable()
615 static inline void tasklet_enable(struct tasklet_struct *t) in tasklet_enable()
621 extern void tasklet_kill(struct tasklet_struct *t);
622 extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu);
623 extern void tasklet_init(struct tasklet_struct *t,
628 struct tasklet_struct tasklet;