aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfsd/nfs4xdr.c26
-rw-r--r--fs/nfsd/xdr4.h1
2 files changed, 2 insertions, 25 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index dbd64a9d268b..776d2f639d6e 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3501,28 +3501,6 @@ nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
3501} 3501}
3502 3502
3503static __be32 3503static __be32
3504nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, __be32 nfserr,
3505 struct nfsd4_destroy_session *destroy_session)
3506{
3507 return nfserr;
3508}
3509
3510static __be32
3511nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
3512 struct nfsd4_free_stateid *free_stateid)
3513{
3514 __be32 *p;
3515
3516 if (nfserr)
3517 return nfserr;
3518
3519 RESERVE_SPACE(4);
3520 *p++ = nfserr;
3521 ADJUST_ARGS();
3522 return nfserr;
3523}
3524
3525static __be32
3526nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr, 3504nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
3527 struct nfsd4_sequence *seq) 3505 struct nfsd4_sequence *seq)
3528{ 3506{
@@ -3620,8 +3598,8 @@ static nfsd4_enc nfsd4_enc_ops[] = {
3620 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session, 3598 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
3621 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id, 3599 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3622 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session, 3600 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3623 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session, 3601 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3624 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid, 3602 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3625 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop, 3603 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3626 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop, 3604 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3627 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop, 3605 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
diff --git a/fs/nfsd/xdr4.h b/fs/nfsd/xdr4.h
index b3ed6446ed8e..916a40737313 100644
--- a/fs/nfsd/xdr4.h
+++ b/fs/nfsd/xdr4.h
@@ -374,7 +374,6 @@ struct nfsd4_test_stateid {
374 374
375struct nfsd4_free_stateid { 375struct nfsd4_free_stateid {
376 stateid_t fr_stateid; /* request */ 376 stateid_t fr_stateid; /* request */
377 __be32 fr_status; /* response */
378}; 377};
379 378
380/* also used for NVERIFY */ 379/* also used for NVERIFY */