Lines Matching defs:serializer_s
113 struct serializer_s { struct
114 kmutex_t ser_lock; /* Protects state and the list */
115 kthread_t *ser_owner; /* Thread executing serializer */
116 ushort_t ser_taskq; /* Serializer scheduled for taskq */
117 kcondvar_t ser_cv; /* For serializer-wait */
118 uint_t ser_count; /* # of queued requests (D) */
119 mblk_t *ser_first; /* First message in the queue */
120 mblk_t *ser_last; /* Last message in the queue */
121 srproc_t *ser_proc; /* Currently executing proc (D) */
122 mblk_t *ser_curr; /* Currently executing msg (D) */
123 void *ser_arg; /* Currently executing arg (D) */