aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r--include/linux/sunrpc/svc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h
index 3435d24bfe55..39ec186a492d 100644
--- a/include/linux/sunrpc/svc.h
+++ b/include/linux/sunrpc/svc.h
@@ -41,6 +41,7 @@ struct svc_pool {
41 struct list_head sp_sockets; /* pending sockets */ 41 struct list_head sp_sockets; /* pending sockets */
42 unsigned int sp_nrthreads; /* # of threads in pool */ 42 unsigned int sp_nrthreads; /* # of threads in pool */
43 struct list_head sp_all_threads; /* all server threads */ 43 struct list_head sp_all_threads; /* all server threads */
44 int sp_nwaking; /* number of threads woken but not yet active */
44} ____cacheline_aligned_in_smp; 45} ____cacheline_aligned_in_smp;
45 46
46/* 47/*
@@ -264,6 +265,7 @@ struct svc_rqst {
264 * cache pages */ 265 * cache pages */
265 wait_queue_head_t rq_wait; /* synchronization */ 266 wait_queue_head_t rq_wait; /* synchronization */
266 struct task_struct *rq_task; /* service thread */ 267 struct task_struct *rq_task; /* service thread */
268 int rq_waking; /* 1 if thread is being woken */
267}; 269};
268 270
269/* 271/*