sched.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

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