NFSD: Get rid of empty function nfs4_state_init
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
f3e41ec5ef
commit
9fa1959e97
|
@ -4979,13 +4979,6 @@ struct nfs4_client *nfsd_find_client(struct sockaddr_storage *addr, size_t addr_
|
||||||
|
|
||||||
#endif /* CONFIG_NFSD_FAULT_INJECTION */
|
#endif /* CONFIG_NFSD_FAULT_INJECTION */
|
||||||
|
|
||||||
/* initialization to perform at module load time: */
|
|
||||||
|
|
||||||
void
|
|
||||||
nfs4_state_init(void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since the lifetime of a delegation isn't limited to that of an open, a
|
* Since the lifetime of a delegation isn't limited to that of an open, a
|
||||||
* client may quite reasonably hang on to a delegation as long as it has
|
* client may quite reasonably hang on to a delegation as long as it has
|
||||||
|
|
|
@ -1179,7 +1179,6 @@ static int __init init_nfsd(void)
|
||||||
retval = nfsd4_init_slabs();
|
retval = nfsd4_init_slabs();
|
||||||
if (retval)
|
if (retval)
|
||||||
goto out_unregister_pernet;
|
goto out_unregister_pernet;
|
||||||
nfs4_state_init();
|
|
||||||
retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
|
retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
|
||||||
if (retval)
|
if (retval)
|
||||||
goto out_free_slabs;
|
goto out_free_slabs;
|
||||||
|
|
|
@ -115,7 +115,6 @@ static inline int nfsd_v4client(struct svc_rqst *rq)
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_NFSD_V4
|
#ifdef CONFIG_NFSD_V4
|
||||||
extern unsigned long max_delegations;
|
extern unsigned long max_delegations;
|
||||||
void nfs4_state_init(void);
|
|
||||||
int nfsd4_init_slabs(void);
|
int nfsd4_init_slabs(void);
|
||||||
void nfsd4_free_slabs(void);
|
void nfsd4_free_slabs(void);
|
||||||
int nfs4_state_start(void);
|
int nfs4_state_start(void);
|
||||||
|
@ -126,7 +125,6 @@ void nfs4_reset_lease(time_t leasetime);
|
||||||
int nfs4_reset_recoverydir(char *recdir);
|
int nfs4_reset_recoverydir(char *recdir);
|
||||||
char * nfs4_recoverydir(void);
|
char * nfs4_recoverydir(void);
|
||||||
#else
|
#else
|
||||||
static inline void nfs4_state_init(void) { }
|
|
||||||
static inline int nfsd4_init_slabs(void) { return 0; }
|
static inline int nfsd4_init_slabs(void) { return 0; }
|
||||||
static inline void nfsd4_free_slabs(void) { }
|
static inline void nfsd4_free_slabs(void) { }
|
||||||
static inline int nfs4_state_start(void) { return 0; }
|
static inline int nfs4_state_start(void) { return 0; }
|
||||||
|
|
Loading…
Reference in New Issue