sched.h 8.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * linux/include/linux/sunrpc/sched.h
 *
 * Scheduling primitives for kernel Sun RPC.
 *
 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
 */

#ifndef _LINUX_SUNRPC_SCHED_H_
#define _LINUX_SUNRPC_SCHED_H_

#include <linux/timer.h>
#include <linux/sunrpc/types.h>
#include <linux/spinlock.h>
#include <linux/wait.h>
#include <linux/workqueue.h>
#include <linux/sunrpc/xdr.h>

/*
 * This is the actual RPC procedure call info.
 */
struct rpc_procinfo;
struct rpc_message {
	struct rpc_procinfo *	rpc_proc;	/* Procedure information */
	void *			rpc_argp;	/* Arguments */
	void *			rpc_resp;	/* Result */
	struct rpc_cred *	rpc_cred;	/* Credentials */
};

30
struct rpc_call_ops;
L
Linus Torvalds 已提交
31 32 33 34
struct rpc_wait_queue;
struct rpc_wait {
	struct list_head	list;		/* wait queue links */
	struct list_head	links;		/* Links to related tasks */
35 36
	struct list_head	timer_list;	/* Timer list */
	unsigned long		expires;
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45
};

/*
 * This is the RPC task struct
 */
struct rpc_task {
#ifdef RPC_DEBUG
	unsigned long		tk_magic;	/* 0xf00baa */
#endif
46
	atomic_t		tk_count;	/* Reference count */
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
	struct list_head	tk_task;	/* global list of tasks */
	struct rpc_clnt *	tk_client;	/* RPC client */
	struct rpc_rqst *	tk_rqstp;	/* RPC request */
	int			tk_status;	/* result of last operation */

	/*
	 * RPC call state
	 */
	struct rpc_message	tk_msg;		/* RPC call info */
	__u8			tk_garb_retry;
	__u8			tk_cred_retry;

	/*
	 * callback	to be executed after waking up
	 * action	next procedure for async tasks
62
	 * tk_ops	caller callbacks
L
Linus Torvalds 已提交
63 64 65
	 */
	void			(*tk_callback)(struct rpc_task *);
	void			(*tk_action)(struct rpc_task *);
66
	const struct rpc_call_ops *tk_ops;
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74
	void *			tk_calldata;

	unsigned long		tk_timeout;	/* timeout for rpc_sleep() */
	unsigned short		tk_flags;	/* misc flags */
	unsigned long		tk_runstate;	/* Task run status */
	struct workqueue_struct	*tk_workqueue;	/* Normally rpciod, but could
						 * be any workqueue
						 */
75
	struct rpc_wait_queue 	*tk_waitqueue;	/* RPC wait queue we're on */
L
Linus Torvalds 已提交
76 77 78 79
	union {
		struct work_struct	tk_work;	/* Async task work queue */
		struct rpc_wait		tk_wait;	/* RPC wait */
	} u;
80 81 82 83 84 85

	unsigned short		tk_timeouts;	/* maj timeouts */
	size_t			tk_bytes_sent;	/* total bytes sent */
	unsigned long		tk_start;	/* RPC task init timestamp */
	long			tk_rtt;		/* round-trip time (jiffies) */

86 87 88
	pid_t			tk_owner;	/* Process id for batching tasks */
	unsigned char		tk_priority : 2;/* Task priority */

L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
#ifdef RPC_DEBUG
	unsigned short		tk_pid;		/* debugging aid */
#endif
};
#define tk_xprt			tk_client->cl_xprt

/* support walking a list of tasks on a wait queue */
#define	task_for_each(task, pos, head) \
	list_for_each(pos, head) \
		if ((task=list_entry(pos, struct rpc_task, u.tk_wait.list)),1)

#define	task_for_first(task, head) \
	if (!list_empty(head) &&  \
	    ((task=list_entry((head)->next, struct rpc_task, u.tk_wait.list)),1))

typedef void			(*rpc_action)(struct rpc_task *);

106
struct rpc_call_ops {
T
Trond Myklebust 已提交
107
	void (*rpc_call_prepare)(struct rpc_task *, void *);
108 109 110 111
	void (*rpc_call_done)(struct rpc_task *, void *);
	void (*rpc_release)(void *);
};

112
struct rpc_task_setup {
113
	struct rpc_task *task;
114 115 116 117
	struct rpc_clnt *rpc_client;
	const struct rpc_message *rpc_message;
	const struct rpc_call_ops *callback_ops;
	void *callback_data;
118
	struct workqueue_struct *workqueue;
119
	unsigned short flags;
120
	signed char priority;
121
};
122

L
Linus Torvalds 已提交
123 124 125 126 127 128 129 130 131 132
/*
 * RPC task flags
 */
#define RPC_TASK_ASYNC		0x0001		/* is an async task */
#define RPC_TASK_SWAPPER	0x0002		/* is swapping in/out */
#define RPC_CALL_MAJORSEEN	0x0020		/* major timeout seen */
#define RPC_TASK_ROOTCREDS	0x0040		/* force root creds */
#define RPC_TASK_DYNAMIC	0x0080		/* task was kmalloc'ed */
#define RPC_TASK_KILLED		0x0100		/* task was killed */
#define RPC_TASK_SOFT		0x0200		/* Use soft timeouts */
133
#define RPC_TASK_SOFTCONN	0x0400		/* Fail if can't connect */
L
Linus Torvalds 已提交
134 135 136 137 138 139

#define RPC_IS_ASYNC(t)		((t)->tk_flags & RPC_TASK_ASYNC)
#define RPC_IS_SWAPPER(t)	((t)->tk_flags & RPC_TASK_SWAPPER)
#define RPC_DO_ROOTOVERRIDE(t)	((t)->tk_flags & RPC_TASK_ROOTCREDS)
#define RPC_ASSASSINATED(t)	((t)->tk_flags & RPC_TASK_KILLED)
#define RPC_IS_SOFT(t)		((t)->tk_flags & RPC_TASK_SOFT)
140
#define RPC_IS_SOFTCONN(t)	((t)->tk_flags & RPC_TASK_SOFTCONN)
L
Linus Torvalds 已提交
141 142 143

#define RPC_TASK_RUNNING	0
#define RPC_TASK_QUEUED		1
144
#define RPC_TASK_ACTIVE		2
L
Linus Torvalds 已提交
145

146 147
#define RPC_IS_RUNNING(t)	test_bit(RPC_TASK_RUNNING, &(t)->tk_runstate)
#define rpc_set_running(t)	set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate)
L
Linus Torvalds 已提交
148
#define rpc_test_and_set_running(t) \
149
				test_and_set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate)
L
Linus Torvalds 已提交
150 151 152 153 154 155 156
#define rpc_clear_running(t)	\
	do { \
		smp_mb__before_clear_bit(); \
		clear_bit(RPC_TASK_RUNNING, &(t)->tk_runstate); \
		smp_mb__after_clear_bit(); \
	} while (0)

157 158
#define RPC_IS_QUEUED(t)	test_bit(RPC_TASK_QUEUED, &(t)->tk_runstate)
#define rpc_set_queued(t)	set_bit(RPC_TASK_QUEUED, &(t)->tk_runstate)
L
Linus Torvalds 已提交
159 160 161 162 163 164 165
#define rpc_clear_queued(t)	\
	do { \
		smp_mb__before_clear_bit(); \
		clear_bit(RPC_TASK_QUEUED, &(t)->tk_runstate); \
		smp_mb__after_clear_bit(); \
	} while (0)

166
#define RPC_IS_ACTIVATED(t)	test_bit(RPC_TASK_ACTIVE, &(t)->tk_runstate)
167

L
Linus Torvalds 已提交
168 169 170 171 172
/*
 * Task priorities.
 * Note: if you change these, you must also change
 * the task initialization definitions below.
 */
173 174 175 176
#define RPC_PRIORITY_LOW	(-1)
#define RPC_PRIORITY_NORMAL	(0)
#define RPC_PRIORITY_HIGH	(1)
#define RPC_NR_PRIORITY		(1 + RPC_PRIORITY_HIGH - RPC_PRIORITY_LOW)
L
Linus Torvalds 已提交
177

178 179 180 181 182 183
struct rpc_timer {
	struct timer_list timer;
	struct list_head list;
	unsigned long expires;
};

L
Linus Torvalds 已提交
184 185 186 187 188 189
/*
 * RPC synchronization objects
 */
struct rpc_wait_queue {
	spinlock_t		lock;
	struct list_head	tasks[RPC_NR_PRIORITY];	/* task queue for each priority level */
190
	pid_t			owner;			/* process id of last task serviced */
L
Linus Torvalds 已提交
191 192 193 194
	unsigned char		maxpriority;		/* maximum priority (0 if queue is not a priority queue) */
	unsigned char		priority;		/* current priority */
	unsigned char		count;			/* # task groups remaining serviced so far */
	unsigned char		nr;			/* # tasks remaining for cookie */
195
	unsigned short		qlen;			/* total # tasks waiting in queue */
196
	struct rpc_timer	timer_list;
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
#ifdef RPC_DEBUG
	const char *		name;
#endif
};

/*
 * This is the # requests to send consecutively
 * from a single cookie.  The aim is to improve
 * performance of NFS operations such as read/write.
 */
#define RPC_BATCH_COUNT			16
#define RPC_IS_PRIORITY(q)		((q)->maxpriority > 0)

/*
 * Function prototypes
 */
213
struct rpc_task *rpc_new_task(const struct rpc_task_setup *);
T
Trond Myklebust 已提交
214
struct rpc_task *rpc_run_task(const struct rpc_task_setup *);
215 216
struct rpc_task *rpc_run_bc_task(struct rpc_rqst *req,
				const struct rpc_call_ops *ops);
217
void		rpc_put_task(struct rpc_task *);
T
Trond Myklebust 已提交
218
void		rpc_exit_task(struct rpc_task *);
219
void		rpc_release_calldata(const struct rpc_call_ops *, void *);
L
Linus Torvalds 已提交
220
void		rpc_killall_tasks(struct rpc_clnt *);
T
Trond Myklebust 已提交
221
void		rpc_execute(struct rpc_task *);
L
Linus Torvalds 已提交
222 223
void		rpc_init_priority_wait_queue(struct rpc_wait_queue *, const char *);
void		rpc_init_wait_queue(struct rpc_wait_queue *, const char *);
224
void		rpc_destroy_wait_queue(struct rpc_wait_queue *);
L
Linus Torvalds 已提交
225
void		rpc_sleep_on(struct rpc_wait_queue *, struct rpc_task *,
226
					rpc_action action);
227 228
void		rpc_wake_up_queued_task(struct rpc_wait_queue *,
					struct rpc_task *);
L
Linus Torvalds 已提交
229 230 231
void		rpc_wake_up(struct rpc_wait_queue *);
struct rpc_task *rpc_wake_up_next(struct rpc_wait_queue *);
void		rpc_wake_up_status(struct rpc_wait_queue *, int);
232
int		rpc_queue_empty(struct rpc_wait_queue *);
L
Linus Torvalds 已提交
233 234
void		rpc_delay(struct rpc_task *, unsigned long);
void *		rpc_malloc(struct rpc_task *, size_t);
235
void		rpc_free(void *);
L
Linus Torvalds 已提交
236 237
int		rpciod_up(void);
void		rpciod_down(void);
238
int		__rpc_wait_for_completion_task(struct rpc_task *task, int (*)(void *));
L
Linus Torvalds 已提交
239 240 241 242 243
#ifdef RPC_DEBUG
void		rpc_show_tasks(void);
#endif
int		rpc_init_mempool(void);
void		rpc_destroy_mempool(void);
244
extern struct workqueue_struct *rpciod_workqueue;
245
void		rpc_prepare_task(struct rpc_task *task);
L
Linus Torvalds 已提交
246 247 248 249

static inline void rpc_exit(struct rpc_task *task, int status)
{
	task->tk_status = status;
T
Trond Myklebust 已提交
250
	task->tk_action = rpc_exit_task;
L
Linus Torvalds 已提交
251 252
}

253 254 255 256 257
static inline int rpc_wait_for_completion_task(struct rpc_task *task)
{
	return __rpc_wait_for_completion_task(task, NULL);
}

L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265
#ifdef RPC_DEBUG
static inline const char * rpc_qname(struct rpc_wait_queue *q)
{
	return ((q && q->name) ? q->name : "unknown");
}
#endif

#endif /* _LINUX_SUNRPC_SCHED_H_ */