Blame view

kernel/workqueue_internal.h 2.2 KB
ea138446e   Tejun Heo   workqueue: rename...
1
2
3
4
5
6
7
8
  /*
   * kernel/workqueue_internal.h
   *
   * Workqueue internal header file.  Only to be included by workqueue and
   * core kernel subsystems.
   */
  #ifndef _KERNEL_WORKQUEUE_INTERNAL_H
  #define _KERNEL_WORKQUEUE_INTERNAL_H
2eaebdb33   Tejun Heo   workqueue: move s...
9
  #include <linux/workqueue.h>
84b233adc   Tejun Heo   workqueue: implem...
10
  #include <linux/kthread.h>
2eaebdb33   Tejun Heo   workqueue: move s...
11

2eaebdb33   Tejun Heo   workqueue: move s...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  struct worker_pool;
  
  /*
   * The poor guys doing the actual heavy lifting.  All on-duty workers are
   * either serving the manager role, on idle list or on busy hash.  For
   * details on the locking annotation (L, I, X...), refer to workqueue.c.
   *
   * Only to be used in workqueue and async.
   */
  struct worker {
  	/* on idle list while idle, on busy hash table while busy */
  	union {
  		struct list_head	entry;	/* L: while idle */
  		struct hlist_node	hentry;	/* L: while busy */
  	};
  
  	struct work_struct	*current_work;	/* L: work being processed */
  	work_func_t		current_func;	/* L: current_work's fn */
112202d90   Tejun Heo   workqueue: rename...
30
  	struct pool_workqueue	*current_pwq; /* L: current_work's pwq */
3d1cb2059   Tejun Heo   workqueue: includ...
31
  	bool			desc_valid;	/* ->desc is valid */
2eaebdb33   Tejun Heo   workqueue: move s...
32
  	struct list_head	scheduled;	/* L: scheduled works */
3d1cb2059   Tejun Heo   workqueue: includ...
33
34
  
  	/* 64 bytes boundary on 64bit, 32 on 32bit */
2eaebdb33   Tejun Heo   workqueue: move s...
35
36
  	struct task_struct	*task;		/* I: worker task */
  	struct worker_pool	*pool;		/* I: the associated pool */
b31041042   Lai Jiangshan   workqueue: better...
37
  						/* L: for rescuers */
92f9c5c40   Lai Jiangshan   workqueue: rename...
38
39
  	struct list_head	node;		/* A: anchored at pool->workers */
  						/* A: runs through worker->node */
3d1cb2059   Tejun Heo   workqueue: includ...
40

2eaebdb33   Tejun Heo   workqueue: move s...
41
42
43
  	unsigned long		last_active;	/* L: last active timestamp */
  	unsigned int		flags;		/* X: flags */
  	int			id;		/* I: worker id */
3d1cb2059   Tejun Heo   workqueue: includ...
44
45
46
47
48
  	/*
  	 * Opaque string set with work_set_desc().  Printed out with task
  	 * dump for debugging - WARN, BUG, panic or sysrq.
  	 */
  	char			desc[WORKER_DESC_LEN];
2eaebdb33   Tejun Heo   workqueue: move s...
49
50
51
  	/* used only by rescuers to point to the target workqueue */
  	struct workqueue_struct	*rescue_wq;	/* I: the workqueue to rescue */
  };
84b233adc   Tejun Heo   workqueue: implem...
52
53
54
55
56
57
58
59
60
  /**
   * current_wq_worker - return struct worker if %current is a workqueue worker
   */
  static inline struct worker *current_wq_worker(void)
  {
  	if (current->flags & PF_WQ_WORKER)
  		return kthread_data(current);
  	return NULL;
  }
ea138446e   Tejun Heo   workqueue: rename...
61
62
  /*
   * Scheduler hooks for concurrency managed workqueue.  Only to be used from
0a0fca9d8   Viresh Kumar   sched: Rename sch...
63
   * sched/core.c and workqueue.c.
ea138446e   Tejun Heo   workqueue: rename...
64
   */
d84ff0512   Tejun Heo   workqueue: consis...
65
  void wq_worker_waking_up(struct task_struct *task, int cpu);
9b7f6597f   Alexander Gordeev   sched/core: Get r...
66
  struct task_struct *wq_worker_sleeping(struct task_struct *task);
ea138446e   Tejun Heo   workqueue: rename...
67
68
  
  #endif /* _KERNEL_WORKQUEUE_INTERNAL_H */