diff options
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/svc.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index c27d806af310..54d8e7bc2341 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
@@ -71,6 +71,17 @@ struct svc_serv { | |||
71 | }; | 71 | }; |
72 | 72 | ||
73 | /* | 73 | /* |
74 | * We use sv_nrthreads as a reference count. svc_destroy() drops | ||
75 | * this refcount, so we need to bump it up around operations that | ||
76 | * change the number of threads. Horrible, but there it is. | ||
77 | * Should be called with the BKL held. | ||
78 | */ | ||
79 | static inline void svc_get(struct svc_serv *serv) | ||
80 | { | ||
81 | serv->sv_nrthreads++; | ||
82 | } | ||
83 | |||
84 | /* | ||
74 | * Maximum payload size supported by a kernel RPC server. | 85 | * Maximum payload size supported by a kernel RPC server. |
75 | * This is use to determine the max number of pages nfsd is | 86 | * This is use to determine the max number of pages nfsd is |
76 | * willing to return in a single READ operation. | 87 | * willing to return in a single READ operation. |