NFSv4: nfs4_proc_renew should be declared static
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
b569ad3492
commit
8534d4ec05
2 changed files with 2 additions and 4 deletions
|
@ -237,8 +237,6 @@ extern const struct inode_operations nfs4_dir_inode_operations;
|
||||||
extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *);
|
extern int nfs4_proc_setclientid(struct nfs_client *, u32, unsigned short, struct rpc_cred *, struct nfs4_setclientid_res *);
|
||||||
extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *);
|
extern int nfs4_proc_setclientid_confirm(struct nfs_client *, struct nfs4_setclientid_res *arg, struct rpc_cred *);
|
||||||
extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred);
|
extern int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred);
|
||||||
extern int nfs4_proc_async_renew(struct nfs_client *, struct rpc_cred *);
|
|
||||||
extern int nfs4_proc_renew(struct nfs_client *, struct rpc_cred *);
|
|
||||||
extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *);
|
extern int nfs4_init_clientid(struct nfs_client *, struct rpc_cred *);
|
||||||
extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *);
|
extern int nfs41_init_clientid(struct nfs_client *, struct rpc_cred *);
|
||||||
extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc);
|
extern int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc);
|
||||||
|
|
|
@ -3386,7 +3386,7 @@ static const struct rpc_call_ops nfs4_renew_ops = {
|
||||||
.rpc_release = nfs4_renew_release,
|
.rpc_release = nfs4_renew_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
|
static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
|
||||||
{
|
{
|
||||||
struct rpc_message msg = {
|
struct rpc_message msg = {
|
||||||
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
|
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
|
||||||
|
@ -3406,7 +3406,7 @@ int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
|
||||||
&nfs4_renew_ops, data);
|
&nfs4_renew_ops, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
|
static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
|
||||||
{
|
{
|
||||||
struct rpc_message msg = {
|
struct rpc_message msg = {
|
||||||
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
|
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
|
||||||
|
|
Loading…
Add table
Reference in a new issue