diff options
author | NeilBrown <neilb@suse.de> | 2006-03-27 04:15:09 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:43 -0500 |
commit | baab935ff3bdac20c558809da0d8e8f761840219 (patch) | |
tree | a22c3189505fe8e7ab3820c988ffd771c0b64fa6 /include/linux/nfsd | |
parent | ebd0cb1af3be2729cc1f574681dfba01fcf458d9 (diff) |
[PATCH] knfsd: Convert sunrpc_cache to use krefs
.. it makes some of the code nicer.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/nfsd')
-rw-r--r-- | include/linux/nfsd/export.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h index d52e0b7ad37b..a6c08a47b25c 100644 --- a/include/linux/nfsd/export.h +++ b/include/linux/nfsd/export.h | |||
@@ -102,13 +102,11 @@ int exp_rootfh(struct auth_domain *, | |||
102 | int exp_pseudoroot(struct auth_domain *, struct svc_fh *fhp, struct cache_req *creq); | 102 | int exp_pseudoroot(struct auth_domain *, struct svc_fh *fhp, struct cache_req *creq); |
103 | int nfserrno(int errno); | 103 | int nfserrno(int errno); |
104 | 104 | ||
105 | extern void expkey_put(struct cache_head *item, struct cache_detail *cd); | ||
106 | extern void svc_export_put(struct cache_head *item, struct cache_detail *cd); | ||
107 | extern struct cache_detail svc_export_cache, svc_expkey_cache; | 105 | extern struct cache_detail svc_export_cache, svc_expkey_cache; |
108 | 106 | ||
109 | static inline void exp_put(struct svc_export *exp) | 107 | static inline void exp_put(struct svc_export *exp) |
110 | { | 108 | { |
111 | svc_export_put(&exp->h, &svc_export_cache); | 109 | cache_put(&exp->h, &svc_export_cache); |
112 | } | 110 | } |
113 | 111 | ||
114 | static inline void exp_get(struct svc_export *exp) | 112 | static inline void exp_get(struct svc_export *exp) |