Commit cce76f9b authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

fs/nfsd/export.c: make 3 functions static

This patch makes the following needlessly global functions static:
- exp_get_by_name()
- exp_parent()
- exp_find()
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Cc: Neil Brown <neilb@suse.de>
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e8a285b7
...@@ -861,8 +861,8 @@ exp_get_fsid_key(svc_client *clp, int fsid) ...@@ -861,8 +861,8 @@ exp_get_fsid_key(svc_client *clp, int fsid)
return exp_find_key(clp, FSID_NUM, fsidv, NULL); return exp_find_key(clp, FSID_NUM, fsidv, NULL);
} }
svc_export * static svc_export *exp_get_by_name(svc_client *clp, struct vfsmount *mnt,
exp_get_by_name(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry, struct dentry *dentry,
struct cache_req *reqp) struct cache_req *reqp)
{ {
struct svc_export *exp, key; struct svc_export *exp, key;
...@@ -887,8 +887,8 @@ exp_get_by_name(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry, ...@@ -887,8 +887,8 @@ exp_get_by_name(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry,
/* /*
* Find the export entry for a given dentry. * Find the export entry for a given dentry.
*/ */
struct svc_export * static struct svc_export *exp_parent(svc_client *clp, struct vfsmount *mnt,
exp_parent(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry, struct dentry *dentry,
struct cache_req *reqp) struct cache_req *reqp)
{ {
svc_export *exp; svc_export *exp;
...@@ -1214,9 +1214,8 @@ out: ...@@ -1214,9 +1214,8 @@ out:
return err; return err;
} }
struct svc_export * static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type,
exp_find(struct auth_domain *clp, int fsid_type, u32 *fsidv, u32 *fsidv, struct cache_req *reqp)
struct cache_req *reqp)
{ {
struct svc_export *exp; struct svc_export *exp;
struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp); struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
......
...@@ -127,17 +127,9 @@ void nfsd_export_shutdown(void); ...@@ -127,17 +127,9 @@ void nfsd_export_shutdown(void);
void nfsd_export_flush(void); void nfsd_export_flush(void);
void exp_readlock(void); void exp_readlock(void);
void exp_readunlock(void); void exp_readunlock(void);
struct svc_export * exp_get_by_name(struct auth_domain *clp,
struct vfsmount *mnt,
struct dentry *dentry,
struct cache_req *reqp);
struct svc_export * rqst_exp_get_by_name(struct svc_rqst *, struct svc_export * rqst_exp_get_by_name(struct svc_rqst *,
struct vfsmount *, struct vfsmount *,
struct dentry *); struct dentry *);
struct svc_export * exp_parent(struct auth_domain *clp,
struct vfsmount *mnt,
struct dentry *dentry,
struct cache_req *reqp);
struct svc_export * rqst_exp_parent(struct svc_rqst *, struct svc_export * rqst_exp_parent(struct svc_rqst *,
struct vfsmount *mnt, struct vfsmount *mnt,
struct dentry *dentry); struct dentry *dentry);
...@@ -157,9 +149,6 @@ static inline void exp_get(struct svc_export *exp) ...@@ -157,9 +149,6 @@ static inline void exp_get(struct svc_export *exp)
{ {
cache_get(&exp->h); cache_get(&exp->h);
} }
extern struct svc_export *
exp_find(struct auth_domain *clp, int fsid_type, u32 *fsidv,
struct cache_req *reqp);
struct svc_export * rqst_exp_find(struct svc_rqst *, int, u32 *); struct svc_export * rqst_exp_find(struct svc_rqst *, int, u32 *);
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment