sched.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/sunrpc/sched.h
  3.  *
  4.  * Scheduling primitives for kernel Sun RPC.
  5.  *
  6.  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef _LINUX_SUNRPC_SCHED_H_
  9. #define _LINUX_SUNRPC_SCHED_H_
  10. #include <linux/timer.h>
  11. #include <linux/sunrpc/types.h>
  12. #include <linux/spinlock.h>
  13. #include <linux/wait.h>
  14. #include <linux/workqueue.h>
  15. #include <linux/sunrpc/xdr.h>
  16. /*
  17.  * This is the actual RPC procedure call info.
  18.  */
  19. struct rpc_procinfo;
  20. struct rpc_message {
  21. struct rpc_procinfo * rpc_proc; /* Procedure information */
  22. void * rpc_argp; /* Arguments */
  23. void * rpc_resp; /* Result */
  24. struct rpc_cred * rpc_cred; /* Credentials */
  25. };
  26. struct rpc_wait_queue;
  27. struct rpc_wait {
  28. struct list_head list; /* wait queue links */
  29. struct list_head links; /* Links to related tasks */
  30. struct rpc_wait_queue * rpc_waitq; /* RPC wait queue we're on */
  31. };
  32. /*
  33.  * This is the RPC task struct
  34.  */
  35. struct rpc_task {
  36. #ifdef RPC_DEBUG
  37. unsigned long tk_magic; /* 0xf00baa */
  38. #endif
  39. struct list_head tk_task; /* global list of tasks */
  40. struct rpc_clnt * tk_client; /* RPC client */
  41. struct rpc_rqst * tk_rqstp; /* RPC request */
  42. int tk_status; /* result of last operation */
  43. /*
  44.  * RPC call state
  45.  */
  46. struct rpc_message tk_msg; /* RPC call info */
  47. __u32 * tk_buffer; /* XDR buffer */
  48. size_t tk_bufsize;
  49. __u8 tk_garb_retry;
  50. __u8 tk_cred_retry;
  51. unsigned long tk_cookie; /* Cookie for batching tasks */
  52. /*
  53.  * timeout_fn   to be executed by timer bottom half
  54.  * callback to be executed after waking up
  55.  * action next procedure for async tasks
  56.  * exit exit async task and report to caller
  57.  */
  58. void (*tk_timeout_fn)(struct rpc_task *);
  59. void (*tk_callback)(struct rpc_task *);
  60. void (*tk_action)(struct rpc_task *);
  61. void (*tk_exit)(struct rpc_task *);
  62. void (*tk_release)(struct rpc_task *);
  63. void * tk_calldata;
  64. /*
  65.  * tk_timer is used for async processing by the RPC scheduling
  66.  * primitives. You should not access this directly unless
  67.  * you have a pathological interest in kernel oopses.
  68.  */
  69. struct timer_list tk_timer; /* kernel timer */
  70. unsigned long tk_timeout; /* timeout for rpc_sleep() */
  71. unsigned short tk_flags; /* misc flags */
  72. unsigned char tk_active   : 1;/* Task has been activated */
  73. unsigned char tk_priority : 2;/* Task priority */
  74. unsigned long tk_runstate; /* Task run status */
  75. struct workqueue_struct *tk_workqueue; /* Normally rpciod, but could
  76.  * be any workqueue
  77.  */
  78. union {
  79. struct work_struct tk_work; /* Async task work queue */
  80. struct rpc_wait tk_wait; /* RPC wait */
  81. } u;
  82. #ifdef RPC_DEBUG
  83. unsigned short tk_pid; /* debugging aid */
  84. #endif
  85. };
  86. #define tk_auth tk_client->cl_auth
  87. #define tk_xprt tk_client->cl_xprt
  88. /* support walking a list of tasks on a wait queue */
  89. #define task_for_each(task, pos, head) 
  90. list_for_each(pos, head) 
  91. if ((task=list_entry(pos, struct rpc_task, u.tk_wait.list)),1)
  92. #define task_for_first(task, head) 
  93. if (!list_empty(head) &&  
  94.     ((task=list_entry((head)->next, struct rpc_task, u.tk_wait.list)),1))
  95. /* .. and walking list of all tasks */
  96. #define alltask_for_each(task, pos, head) 
  97. list_for_each(pos, head) 
  98. if ((task=list_entry(pos, struct rpc_task, tk_task)),1)
  99. typedef void (*rpc_action)(struct rpc_task *);
  100. /*
  101.  * RPC task flags
  102.  */
  103. #define RPC_TASK_ASYNC 0x0001 /* is an async task */
  104. #define RPC_TASK_SWAPPER 0x0002 /* is swapping in/out */
  105. #define RPC_TASK_CHILD 0x0008 /* is child of other task */
  106. #define RPC_CALL_MAJORSEEN 0x0020 /* major timeout seen */
  107. #define RPC_TASK_ROOTCREDS 0x0040 /* force root creds */
  108. #define RPC_TASK_DYNAMIC 0x0080 /* task was kmalloc'ed */
  109. #define RPC_TASK_KILLED 0x0100 /* task was killed */
  110. #define RPC_TASK_SOFT 0x0200 /* Use soft timeouts */
  111. #define RPC_TASK_NOINTR 0x0400 /* uninterruptible task */
  112. #define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC)
  113. #define RPC_IS_CHILD(t) ((t)->tk_flags & RPC_TASK_CHILD)
  114. #define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER)
  115. #define RPC_DO_ROOTOVERRIDE(t) ((t)->tk_flags & RPC_TASK_ROOTCREDS)
  116. #define RPC_ASSASSINATED(t) ((t)->tk_flags & RPC_TASK_KILLED)
  117. #define RPC_IS_ACTIVATED(t) ((t)->tk_active)
  118. #define RPC_DO_CALLBACK(t) ((t)->tk_callback != NULL)
  119. #define RPC_IS_SOFT(t) ((t)->tk_flags & RPC_TASK_SOFT)
  120. #define RPC_TASK_UNINTERRUPTIBLE(t) ((t)->tk_flags & RPC_TASK_NOINTR)
  121. #define RPC_TASK_RUNNING 0
  122. #define RPC_TASK_QUEUED 1
  123. #define RPC_TASK_WAKEUP 2
  124. #define RPC_TASK_HAS_TIMER 3
  125. #define RPC_IS_RUNNING(t) (test_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  126. #define rpc_set_running(t) (set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  127. #define rpc_test_and_set_running(t) 
  128. (test_and_set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  129. #define rpc_clear_running(t)
  130. do { 
  131. smp_mb__before_clear_bit(); 
  132. clear_bit(RPC_TASK_RUNNING, &(t)->tk_runstate); 
  133. smp_mb__after_clear_bit(); 
  134. } while (0)
  135. #define RPC_IS_QUEUED(t) (test_bit(RPC_TASK_QUEUED, &(t)->tk_runstate))
  136. #define rpc_set_queued(t) (set_bit(RPC_TASK_QUEUED, &(t)->tk_runstate))
  137. #define rpc_clear_queued(t)
  138. do { 
  139. smp_mb__before_clear_bit(); 
  140. clear_bit(RPC_TASK_QUEUED, &(t)->tk_runstate); 
  141. smp_mb__after_clear_bit(); 
  142. } while (0)
  143. #define rpc_start_wakeup(t) 
  144. (test_and_set_bit(RPC_TASK_WAKEUP, &(t)->tk_runstate) == 0)
  145. #define rpc_finish_wakeup(t) 
  146. do { 
  147. smp_mb__before_clear_bit(); 
  148. clear_bit(RPC_TASK_WAKEUP, &(t)->tk_runstate); 
  149. smp_mb__after_clear_bit(); 
  150. } while (0)
  151. /*
  152.  * Task priorities.
  153.  * Note: if you change these, you must also change
  154.  * the task initialization definitions below.
  155.  */
  156. #define RPC_PRIORITY_LOW 0
  157. #define RPC_PRIORITY_NORMAL 1
  158. #define RPC_PRIORITY_HIGH 2
  159. #define RPC_NR_PRIORITY (RPC_PRIORITY_HIGH+1)
  160. /*
  161.  * RPC synchronization objects
  162.  */
  163. struct rpc_wait_queue {
  164. spinlock_t lock;
  165. struct list_head tasks[RPC_NR_PRIORITY]; /* task queue for each priority level */
  166. unsigned long cookie; /* cookie of last task serviced */
  167. unsigned char maxpriority; /* maximum priority (0 if queue is not a priority queue) */
  168. unsigned char priority; /* current priority */
  169. unsigned char count; /* # task groups remaining serviced so far */
  170. unsigned char nr; /* # tasks remaining for cookie */
  171. #ifdef RPC_DEBUG
  172. const char * name;
  173. #endif
  174. };
  175. /*
  176.  * This is the # requests to send consecutively
  177.  * from a single cookie.  The aim is to improve
  178.  * performance of NFS operations such as read/write.
  179.  */
  180. #define RPC_BATCH_COUNT 16
  181. #ifndef RPC_DEBUG
  182. # define RPC_WAITQ_INIT(var,qname) { 
  183. .lock = SPIN_LOCK_UNLOCKED, 
  184. .tasks = { 
  185. [0] = LIST_HEAD_INIT(var.tasks[0]), 
  186. [1] = LIST_HEAD_INIT(var.tasks[1]), 
  187. [2] = LIST_HEAD_INIT(var.tasks[2]), 
  188. }, 
  189. }
  190. #else
  191. # define RPC_WAITQ_INIT(var,qname) { 
  192. .lock = SPIN_LOCK_UNLOCKED, 
  193. .tasks = { 
  194. [0] = LIST_HEAD_INIT(var.tasks[0]), 
  195. [1] = LIST_HEAD_INIT(var.tasks[1]), 
  196. [2] = LIST_HEAD_INIT(var.tasks[2]), 
  197. }, 
  198. .name = qname, 
  199. }
  200. #endif
  201. # define RPC_WAITQ(var,qname)      struct rpc_wait_queue var = RPC_WAITQ_INIT(var,qname)
  202. #define RPC_IS_PRIORITY(q) ((q)->maxpriority > 0)
  203. /*
  204.  * Function prototypes
  205.  */
  206. struct rpc_task *rpc_new_task(struct rpc_clnt *, rpc_action, int flags);
  207. struct rpc_task *rpc_new_child(struct rpc_clnt *, struct rpc_task *parent);
  208. void rpc_init_task(struct rpc_task *, struct rpc_clnt *,
  209. rpc_action exitfunc, int flags);
  210. void rpc_release_task(struct rpc_task *);
  211. void rpc_killall_tasks(struct rpc_clnt *);
  212. int rpc_execute(struct rpc_task *);
  213. void rpc_run_child(struct rpc_task *parent, struct rpc_task *child,
  214. rpc_action action);
  215. void rpc_init_priority_wait_queue(struct rpc_wait_queue *, const char *);
  216. void rpc_init_wait_queue(struct rpc_wait_queue *, const char *);
  217. void rpc_sleep_on(struct rpc_wait_queue *, struct rpc_task *,
  218. rpc_action action, rpc_action timer);
  219. void rpc_wake_up_task(struct rpc_task *);
  220. void rpc_wake_up(struct rpc_wait_queue *);
  221. struct rpc_task *rpc_wake_up_next(struct rpc_wait_queue *);
  222. void rpc_wake_up_status(struct rpc_wait_queue *, int);
  223. void rpc_delay(struct rpc_task *, unsigned long);
  224. void * rpc_malloc(struct rpc_task *, size_t);
  225. int rpciod_up(void);
  226. void rpciod_down(void);
  227. void rpciod_wake_up(void);
  228. #ifdef RPC_DEBUG
  229. void rpc_show_tasks(void);
  230. #endif
  231. int rpc_init_mempool(void);
  232. void rpc_destroy_mempool(void);
  233. static inline void rpc_exit(struct rpc_task *task, int status)
  234. {
  235. task->tk_status = status;
  236. task->tk_action = NULL;
  237. }
  238. #ifdef RPC_DEBUG
  239. static inline const char * rpc_qname(struct rpc_wait_queue *q)
  240. {
  241. return ((q && q->name) ? q->name : "unknown");
  242. }
  243. #endif
  244. #endif /* _LINUX_SUNRPC_SCHED_H_ */