[PATCH] knfsd: nfsd4: reorganize compound ops
Define an op descriptor struct, use it to simplify nfsd4_proc_compound(). Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c954e2a5d1
commit
b591480bbe
@@ -711,7 +711,8 @@ out_err:
|
||||
*
|
||||
*/
|
||||
__be32
|
||||
nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_setclientid *setclid)
|
||||
nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
|
||||
struct nfsd4_setclientid *setclid)
|
||||
{
|
||||
__be32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
|
||||
struct xdr_netobj clname = {
|
||||
@@ -876,7 +877,9 @@ out:
|
||||
* NOTE: callback information will be processed here in a future patch
|
||||
*/
|
||||
__be32
|
||||
nfsd4_setclientid_confirm(struct svc_rqst *rqstp, struct nfsd4_setclientid_confirm *setclientid_confirm)
|
||||
nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
|
||||
struct nfsd4_compound_state *cstate,
|
||||
struct nfsd4_setclientid_confirm *setclientid_confirm)
|
||||
{
|
||||
__be32 ip_addr = rqstp->rq_addr.sin_addr.s_addr;
|
||||
struct nfs4_client *conf, *unconf;
|
||||
@@ -1833,7 +1836,8 @@ static void laundromat_main(struct work_struct *);
|
||||
static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
|
||||
|
||||
__be32
|
||||
nfsd4_renew(clientid_t *clid)
|
||||
nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
|
||||
clientid_t *clid)
|
||||
{
|
||||
struct nfs4_client *clp;
|
||||
__be32 status;
|
||||
@@ -2979,7 +2983,9 @@ out:
|
||||
}
|
||||
|
||||
__be32
|
||||
nfsd4_release_lockowner(struct svc_rqst *rqstp, struct nfsd4_release_lockowner *rlockowner)
|
||||
nfsd4_release_lockowner(struct svc_rqst *rqstp,
|
||||
struct nfsd4_compound_state *cstate,
|
||||
struct nfsd4_release_lockowner *rlockowner)
|
||||
{
|
||||
clientid_t *clid = &rlockowner->rl_clientid;
|
||||
struct nfs4_stateowner *sop;
|
||||
|
Reference in New Issue
Block a user