Lines Matching defs:thi
174 static inline enum drbd_thread_state get_t_state(struct drbd_thread *thi)
181 return thi->t_state;
1000 extern int drbd_thread_start(struct drbd_thread *thi);
1001 extern void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait);
1003 extern void drbd_thread_current_set_cpu(struct drbd_thread *thi);
1430 extern int drbd_worker(struct drbd_thread *thi);
1487 extern int drbd_receiver(struct drbd_thread *thi);
1488 extern int drbd_ack_receiver(struct drbd_thread *thi);
1893 static inline void drbd_thread_stop(struct drbd_thread *thi)
1895 _drbd_thread_stop(thi, false, true);
1898 static inline void drbd_thread_stop_nowait(struct drbd_thread *thi)
1900 _drbd_thread_stop(thi, false, false);
1903 static inline void drbd_thread_restart_nowait(struct drbd_thread *thi)
1905 _drbd_thread_stop(thi, true, false);