Lines Matching defs:worker_pool
144 struct worker_pool { struct
145 spinlock_t lock; /* the pool lock */
146 int cpu; /* I: the associated cpu */
147 int node; /* I: the associated node ID */
148 int id; /* I: pool ID */
149 unsigned int flags; /* X: flags */
151 struct list_head worklist; /* L: list of pending works */
152 int nr_workers; /* L: total number of workers */
155 int nr_idle; /* L: currently idle ones */
157 struct list_head idle_list; /* X: list of idle workers */
158 struct timer_list idle_timer; /* L: worker idle timeout */
159 struct timer_list mayday_timer; /* L: SOS timer for workers */
166 struct mutex manager_arb; /* manager arbitration */
167 struct worker *manager; /* L: purely informational */
168 struct mutex attach_mutex; /* attach/detach exclusion */
169 struct list_head workers; /* A: attached workers */
170 struct completion *detach_completion; /* all workers detached */
172 struct ida worker_ida; /* worker IDs for task name */
174 struct workqueue_attrs *attrs; /* I: worker attributes */
175 struct hlist_node hash_node; /* PL: unbound_pool_hash node */
199 struct worker_pool *pool; /* I: the associated pool */ argument