diff options
author | NeilBrown <neilb@cse.unsw.edu.au> | 2005-06-23 22:03:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-24 00:06:32 -0700 |
commit | bd0b1e954e3ba3e5d2cab941458cf98206471bd2 (patch) | |
tree | 3637bcc40dc0725becc5e47dc51a4ded1bf3f673 /include | |
parent | 707d4ab7b3aa6d1f7a7d2cd123fb83ba9a528205 (diff) | |
download | op-kernel-dev-bd0b1e954e3ba3e5d2cab941458cf98206471bd2.zip op-kernel-dev-bd0b1e954e3ba3e5d2cab941458cf98206471bd2.tar.gz |
[PATCH] knfsd: nfsd4: idmap initialization
Adopt standard kernel style by defining a no-op function instead of putting
ifdef's in the code where the function is called.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nfsd_idmap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/nfsd_idmap.h b/include/linux/nfsd_idmap.h index 9bb7f30..e82746f 100644 --- a/include/linux/nfsd_idmap.h +++ b/include/linux/nfsd_idmap.h @@ -43,8 +43,13 @@ /* XXX from linux/nfs_idmap.h */ #define IDMAP_NAMESZ 128 +#ifdef CONFIG_NFSD_V4 void nfsd_idmap_init(void); void nfsd_idmap_shutdown(void); +#else +static inline void nfsd_idmap_init(void) {}; +static inline void nfsd_idmap_shutdown(void) {}; +#endif int nfsd_map_name_to_uid(struct svc_rqst *, const char *, size_t, __u32 *); int nfsd_map_name_to_gid(struct svc_rqst *, const char *, size_t, __u32 *); |