Searched refs:pwq (Results 1 – 5 of 5) sorted by relevance
| /linux/kernel/ |
| H A D | workqueue.c | 553 static void show_pwq(struct pool_workqueue *pwq); 618 #define for_each_pwq(pwq, wq) \ argument 619 list_for_each_entry_rcu((pwq), &(wq)->pwqs, pwqs_node, \ 812 static void set_work_pwq(struct work_struct *work, struct pool_workqueue *pwq, in set_work_pwq() argument 815 set_work_data(work, (unsigned long)pwq | WORK_STRUCT_PENDING | in set_work_pwq() 1533 struct pool_workqueue *pwq = worker->current_pwq; in wq_worker_tick() local 1536 if (!pwq) in wq_worker_tick() 1543 data_race(pwq->stats[PWQ_STAT_CPU_TIME] += TICK_USEC); in wq_worker_tick() 1569 pwq->stats[PWQ_STAT_CPU_INTENSIVE]++; in wq_worker_tick() 1572 pwq->stats[PWQ_STAT_CM_WAKEUP]++; in wq_worker_tick() [all …]
|
| /linux/include/trace/events/ |
| H A D | workqueue.h | 16 * @pwq: pointer to struct pool_workqueue 25 TP_PROTO(int req_cpu, struct pool_workqueue *pwq, 28 TP_ARGS(req_cpu, pwq, work), 33 __string( workqueue, pwq->wq->name) 43 __entry->cpu = pwq->pool->cpu;
|
| /linux/fs/ |
| H A D | eventpoll.c | 890 static void ep_remove_wait_queue(struct eppoll_entry *pwq) in ep_remove_wait_queue() argument 906 whead = smp_load_acquire(&pwq->whead); in ep_remove_wait_queue() 908 remove_wait_queue(whead, &pwq->wait); in ep_remove_wait_queue() 919 struct eppoll_entry *pwq; in ep_unregister_pollwait() local 921 while ((pwq = *p) != NULL) { in ep_unregister_pollwait() 922 *p = pwq->next; in ep_unregister_pollwait() 923 ep_remove_wait_queue(pwq); in ep_unregister_pollwait() 924 kmem_cache_free(pwq_cache, pwq); in ep_unregister_pollwait() 1614 struct eppoll_entry *pwq; in ep_ptable_queue_proc() local 1619 pwq = kmem_cache_alloc(pwq_cache, GFP_KERNEL); in ep_ptable_queue_proc() [all …]
|
| /linux/include/linux/ |
| H A D | poll.h | 105 extern void poll_initwait(struct poll_wqueues *pwq); 106 extern void poll_freewait(struct poll_wqueues *pwq);
|
| /linux/tools/workqueue/ |
| H A D | wq_monitor.py | 75 for pwq in list_for_each_entry('struct pool_workqueue', wq.pwqs.address_of_(), 'pwqs_node'): 77 self.stats[i] += int(pwq.stats[i])
|