workqueue.h 4.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * workqueue.h --- work queue handling for Linux.
 */

#ifndef _LINUX_WORKQUEUE_H
#define _LINUX_WORKQUEUE_H

#include <linux/timer.h>
#include <linux/linkage.h>
#include <linux/bitops.h>

struct workqueue_struct;

14 15
typedef void (*work_func_t)(void *data);

L
Linus Torvalds 已提交
16
struct work_struct {
17 18 19 20 21 22
	/* the first word is the work queue pointer and the pending flag
	 * rolled into one */
	unsigned long management;
#define WORK_STRUCT_PENDING 0		/* T if work item pending execution */
#define WORK_STRUCT_FLAG_MASK (3UL)
#define WORK_STRUCT_WQ_DATA_MASK (~WORK_STRUCT_FLAG_MASK)
L
Linus Torvalds 已提交
23
	struct list_head entry;
24
	work_func_t func;
L
Linus Torvalds 已提交
25
	void *data;
26 27 28 29
};

struct delayed_work {
	struct work_struct work;
L
Linus Torvalds 已提交
30 31 32
	struct timer_list timer;
};

33 34 35 36
struct execute_work {
	struct work_struct work;
};

L
Linus Torvalds 已提交
37 38 39 40
#define __WORK_INITIALIZER(n, f, d) {				\
        .entry	= { &(n).entry, &(n).entry },			\
	.func = (f),						\
	.data = (d),						\
41 42 43 44
	}

#define __DELAYED_WORK_INITIALIZER(n, f, d) {			\
	.work = __WORK_INITIALIZER((n).work, (f), (d)),		\
L
Linus Torvalds 已提交
45 46 47 48 49 50
	.timer = TIMER_INITIALIZER(NULL, 0, 0),			\
	}

#define DECLARE_WORK(n, f, d)					\
	struct work_struct n = __WORK_INITIALIZER(n, f, d)

51 52 53
#define DECLARE_DELAYED_WORK(n, f, d)				\
	struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, d)

L
Linus Torvalds 已提交
54
/*
55
 * initialize a work item's function and data pointers
L
Linus Torvalds 已提交
56 57 58
 */
#define PREPARE_WORK(_work, _func, _data)			\
	do {							\
59 60
		(_work)->func = (_func);			\
		(_work)->data = (_data);			\
L
Linus Torvalds 已提交
61 62
	} while (0)

63 64 65
#define PREPARE_DELAYED_WORK(_work, _func, _data)		\
	PREPARE_WORK(&(_work)->work, (_func), (_data))

L
Linus Torvalds 已提交
66
/*
67
 * initialize all of a work item in one go
L
Linus Torvalds 已提交
68 69 70 71
 */
#define INIT_WORK(_work, _func, _data)				\
	do {							\
		INIT_LIST_HEAD(&(_work)->entry);		\
72
		(_work)->management = 0;			\
L
Linus Torvalds 已提交
73
		PREPARE_WORK((_work), (_func), (_data));	\
74 75 76 77 78
	} while (0)

#define INIT_DELAYED_WORK(_work, _func, _data)		\
	do {							\
		INIT_WORK(&(_work)->work, (_func), (_data));	\
L
Linus Torvalds 已提交
79 80 81
		init_timer(&(_work)->timer);			\
	} while (0)

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/**
 * work_pending - Find out whether a work item is currently pending
 * @work: The work item in question
 */
#define work_pending(work) \
	test_bit(WORK_STRUCT_PENDING, &(work)->management)

/**
 * delayed_work_pending - Find out whether a delayable work item is currently
 * pending
 * @work: The work item in question
 */
#define delayed_work_pending(work) \
	test_bit(WORK_STRUCT_PENDING, &(work)->work.management)

97

L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105
extern struct workqueue_struct *__create_workqueue(const char *name,
						    int singlethread);
#define create_workqueue(name) __create_workqueue((name), 0)
#define create_singlethread_workqueue(name) __create_workqueue((name), 1)

extern void destroy_workqueue(struct workqueue_struct *wq);

extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work));
106
extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct delayed_work *work, unsigned long delay));
107
extern int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
108
	struct delayed_work *work, unsigned long delay);
L
Linus Torvalds 已提交
109 110 111
extern void FASTCALL(flush_workqueue(struct workqueue_struct *wq));

extern int FASTCALL(schedule_work(struct work_struct *work));
112
extern int FASTCALL(schedule_delayed_work(struct delayed_work *work, unsigned long delay));
L
Linus Torvalds 已提交
113

114
extern int schedule_delayed_work_on(int cpu, struct delayed_work *work, unsigned long delay);
115
extern int schedule_on_each_cpu(work_func_t func, void *info);
L
Linus Torvalds 已提交
116 117 118 119 120
extern void flush_scheduled_work(void);
extern int current_is_keventd(void);
extern int keventd_up(void);

extern void init_workqueues(void);
121
void cancel_rearming_delayed_work(struct delayed_work *work);
122
void cancel_rearming_delayed_workqueue(struct workqueue_struct *,
123
				       struct delayed_work *);
124
int execute_in_process_context(work_func_t fn, void *, struct execute_work *);
L
Linus Torvalds 已提交
125 126 127 128 129 130

/*
 * Kill off a pending schedule_delayed_work().  Note that the work callback
 * function may still be running on return from cancel_delayed_work().  Run
 * flush_scheduled_work() to wait on it.
 */
131
static inline int cancel_delayed_work(struct delayed_work *work)
L
Linus Torvalds 已提交
132 133 134 135 136
{
	int ret;

	ret = del_timer_sync(&work->timer);
	if (ret)
137
		clear_bit(WORK_STRUCT_PENDING, &work->work.management);
L
Linus Torvalds 已提交
138 139 140 141
	return ret;
}

#endif