Searched defs:worker_pool (Results 1 – 2 of 2) sorted by relevance
148 struct worker_pool { struct149 raw_spinlock_t lock; /* the pool lock */150 int cpu; /* I: the associated cpu */151 int node; /* I: the associated node ID */152 int id; /* I: pool ID */153 unsigned int flags; /* X: flags */155 unsigned long watchdog_ts; /* L: watchdog timestamp */157 struct list_head worklist; /* L: list of pending works */159 int nr_workers; /* L: total number of workers */160 int nr_idle; /* L: currently idle workers */[all …]
159 struct worker_pool { struct160 raw_spinlock_t lock; /* the pool lock */161 int cpu; /* I: the associated cpu */162 int node; /* I: the associated node ID */163 int id; /* I: pool ID */164 unsigned int flags; /* L: flags */166 unsigned long watchdog_ts; /* L: watchdog timestamp */167 bool cpu_stall; /* WD: stalled cpu bound pool */175 int nr_running;177 struct list_head worklist; /* L: list of pending works */[all …]