sched.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

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/tqueue.h>
  12. #include <linux/sunrpc/types.h>
  13. #include <linux/wait.h>
  14. /*
  15.  * Define this if you want to test the fast scheduler for async calls.
  16.  * This is still experimental and may not work.
  17.  */
  18. #undef  CONFIG_RPC_FASTSCHED
  19. /*
  20.  * This is the actual RPC procedure call info.
  21.  */
  22. struct rpc_message {
  23. __u32 rpc_proc; /* Procedure number */
  24. void * rpc_argp; /* Arguments */
  25. void * rpc_resp; /* Result */
  26. struct rpc_cred * rpc_cred; /* Credentials */
  27. };
  28. /*
  29.  * This is the RPC task struct
  30.  */
  31. struct rpc_task {
  32. struct list_head tk_list; /* wait queue links */
  33. #ifdef RPC_DEBUG
  34. unsigned long tk_magic; /* 0xf00baa */
  35. #endif
  36. struct list_head tk_task; /* global list of tasks */
  37. struct rpc_clnt * tk_client; /* RPC client */
  38. struct rpc_rqst * tk_rqstp; /* RPC request */
  39. int tk_status; /* result of last operation */
  40. struct rpc_wait_queue * tk_rpcwait; /* RPC wait queue we're on */
  41. /*
  42.  * RPC call state
  43.  */
  44. struct rpc_message tk_msg; /* RPC call info */
  45. __u32 * tk_buffer; /* XDR buffer */
  46. __u8 tk_garb_retry,
  47. tk_cred_retry,
  48. tk_suid_retry;
  49. /*
  50.  * timeout_fn   to be executed by timer bottom half
  51.  * callback to be executed after waking up
  52.  * action next procedure for async tasks
  53.  * exit exit async task and report to caller
  54.  */
  55. void (*tk_timeout_fn)(struct rpc_task *);
  56. void (*tk_callback)(struct rpc_task *);
  57. void (*tk_action)(struct rpc_task *);
  58. void (*tk_exit)(struct rpc_task *);
  59. void (*tk_release)(struct rpc_task *);
  60. void * tk_calldata;
  61. /*
  62.  * tk_timer is used for async processing by the RPC scheduling
  63.  * primitives. You should not access this directly unless
  64.  * you have a pathological interest in kernel oopses.
  65.  */
  66. struct timer_list tk_timer; /* kernel timer */
  67. wait_queue_head_t tk_wait; /* sync: sleep on this q */
  68. unsigned long tk_timeout; /* timeout for rpc_sleep() */
  69. unsigned short tk_flags; /* misc flags */
  70. unsigned char tk_active   : 1;/* Task has been activated */
  71. unsigned long tk_runstate; /* Task run status */
  72. #ifdef RPC_DEBUG
  73. unsigned short tk_pid; /* debugging aid */
  74. #endif
  75. };
  76. #define tk_auth tk_client->cl_auth
  77. #define tk_xprt tk_client->cl_xprt
  78. /* support walking a list of tasks on a wait queue */
  79. #define task_for_each(task, pos, head) 
  80. list_for_each(pos, head) 
  81. if ((task=list_entry(pos, struct rpc_task, tk_list)),1)
  82. #define task_for_first(task, head) 
  83. if (!list_empty(head) &&  
  84.     ((task=list_entry((head)->next, struct rpc_task, tk_list)),1))
  85. /* .. and walking list of all tasks */
  86. #define alltask_for_each(task, pos, head) 
  87. list_for_each(pos, head) 
  88. if ((task=list_entry(pos, struct rpc_task, tk_task)),1)
  89. typedef void (*rpc_action)(struct rpc_task *);
  90. /*
  91.  * RPC task flags
  92.  */
  93. #define RPC_TASK_ASYNC 0x0001 /* is an async task */
  94. #define RPC_TASK_SWAPPER 0x0002 /* is swapping in/out */
  95. #define RPC_TASK_SETUID 0x0004 /* is setuid process */
  96. #define RPC_TASK_CHILD 0x0008 /* is child of other task */
  97. #define RPC_CALL_REALUID 0x0010 /* try using real uid */
  98. #define RPC_CALL_MAJORSEEN 0x0020 /* major timeout seen */
  99. #define RPC_TASK_ROOTCREDS 0x0040 /* force root creds */
  100. #define RPC_TASK_DYNAMIC 0x0080 /* task was kmalloc'ed */
  101. #define RPC_TASK_KILLED 0x0100 /* task was killed */
  102. #define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC)
  103. #define RPC_IS_SETUID(t) ((t)->tk_flags & RPC_TASK_SETUID)
  104. #define RPC_IS_CHILD(t) ((t)->tk_flags & RPC_TASK_CHILD)
  105. #define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER)
  106. #define RPC_DO_ROOTOVERRIDE(t) ((t)->tk_flags & RPC_TASK_ROOTCREDS)
  107. #define RPC_ASSASSINATED(t) ((t)->tk_flags & RPC_TASK_KILLED)
  108. #define RPC_IS_ACTIVATED(t) ((t)->tk_active)
  109. #define RPC_DO_CALLBACK(t) ((t)->tk_callback != NULL)
  110. #define RPC_TASK_SLEEPING 0
  111. #define RPC_TASK_RUNNING 1
  112. #define RPC_IS_SLEEPING(t) (test_bit(RPC_TASK_SLEEPING, &(t)->tk_runstate))
  113. #define RPC_IS_RUNNING(t) (test_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  114. #define rpc_set_running(t) (set_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  115. #define rpc_clear_running(t) (clear_bit(RPC_TASK_RUNNING, &(t)->tk_runstate))
  116. #define rpc_set_sleeping(t) (set_bit(RPC_TASK_SLEEPING, &(t)->tk_runstate))
  117. #define rpc_clear_sleeping(t) 
  118. do { 
  119. smp_mb__before_clear_bit(); 
  120. clear_bit(RPC_TASK_SLEEPING, &(t)->tk_runstate); 
  121. smp_mb__after_clear_bit(); 
  122. } while(0)
  123. /*
  124.  * RPC synchronization objects
  125.  */
  126. struct rpc_wait_queue {
  127. struct list_head tasks;
  128. #ifdef RPC_DEBUG
  129. char * name;
  130. #endif
  131. };
  132. #ifndef RPC_DEBUG
  133. # define RPC_WAITQ_INIT(var,qname) ((struct rpc_wait_queue) {LIST_HEAD_INIT(var)})
  134. # define RPC_WAITQ(var,qname)      struct rpc_wait_queue var = RPC_WAITQ_INIT(var.tasks,qname)
  135. # define INIT_RPC_WAITQ(ptr,qname) do { 
  136. INIT_LIST_HEAD(&(ptr)->tasks); 
  137. } while(0)
  138. #else
  139. # define RPC_WAITQ_INIT(var,qname) ((struct rpc_wait_queue) {LIST_HEAD_INIT(var.tasks), qname})
  140. # define RPC_WAITQ(var,qname)      struct rpc_wait_queue var = RPC_WAITQ_INIT(var,qname)
  141. # define INIT_RPC_WAITQ(ptr,qname) do { 
  142. INIT_LIST_HEAD(&(ptr)->tasks); (ptr)->name = qname; 
  143. } while(0)
  144. #endif
  145. /*
  146.  * Function prototypes
  147.  */
  148. struct rpc_task *rpc_new_task(struct rpc_clnt *, rpc_action, int flags);
  149. struct rpc_task *rpc_new_child(struct rpc_clnt *, struct rpc_task *parent);
  150. void rpc_init_task(struct rpc_task *, struct rpc_clnt *,
  151. rpc_action exitfunc, int flags);
  152. void rpc_release_task(struct rpc_task *);
  153. void rpc_killall_tasks(struct rpc_clnt *);
  154. int rpc_execute(struct rpc_task *);
  155. void rpc_run_child(struct rpc_task *parent, struct rpc_task *child,
  156. rpc_action action);
  157. int rpc_add_wait_queue(struct rpc_wait_queue *, struct rpc_task *);
  158. void rpc_remove_wait_queue(struct rpc_task *);
  159. void rpc_sleep_on(struct rpc_wait_queue *, struct rpc_task *,
  160. rpc_action action, rpc_action timer);
  161. void rpc_add_timer(struct rpc_task *, rpc_action);
  162. void rpc_wake_up_task(struct rpc_task *);
  163. void rpc_wake_up(struct rpc_wait_queue *);
  164. struct rpc_task *rpc_wake_up_next(struct rpc_wait_queue *);
  165. void rpc_wake_up_status(struct rpc_wait_queue *, int);
  166. void rpc_delay(struct rpc_task *, unsigned long);
  167. void * rpc_allocate(unsigned int flags, unsigned int);
  168. void rpc_free(void *);
  169. int rpciod_up(void);
  170. void rpciod_down(void);
  171. void rpciod_wake_up(void);
  172. #ifdef RPC_DEBUG
  173. void rpc_show_tasks(void);
  174. #endif
  175. static __inline__ void *
  176. rpc_malloc(struct rpc_task *task, unsigned int size)
  177. {
  178. return rpc_allocate(task->tk_flags, size);
  179. }
  180. static __inline__ void
  181. rpc_exit(struct rpc_task *task, int status)
  182. {
  183. task->tk_status = status;
  184. task->tk_action = NULL;
  185. }
  186. #ifdef RPC_DEBUG
  187. static __inline__ char *
  188. rpc_qname(struct rpc_wait_queue *q)
  189. {
  190. return q->name? q->name : "unknown";
  191. }
  192. #endif
  193. #endif /* _LINUX_SUNRPC_SCHED_H_ */