diff options
author | Andy Adamson <andros@netapp.com> | 2009-04-03 01:27:58 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-04-03 20:41:14 -0400 |
commit | 069b6ad4bb20abf175ea7875e82e8002154773af (patch) | |
tree | e3a933d4c7f0444d29f9266fc5aa77f6e87f5a69 /fs/nfsd/nfs4state.c | |
parent | 2db134eb3b39faefc7fbfb200156d175edba2f68 (diff) |
nfsd41: proc stubs
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r-- | fs/nfsd/nfs4state.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index fc20e1f38d75..cfc01f415d15 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -833,6 +833,38 @@ out_err: | |||
833 | } | 833 | } |
834 | 834 | ||
835 | __be32 | 835 | __be32 |
836 | nfsd4_exchange_id(struct svc_rqst *rqstp, | ||
837 | struct nfsd4_compound_state *cstate, | ||
838 | struct nfsd4_exchange_id *exid) | ||
839 | { | ||
840 | return -1; /* stub */ | ||
841 | } | ||
842 | |||
843 | __be32 | ||
844 | nfsd4_create_session(struct svc_rqst *rqstp, | ||
845 | struct nfsd4_compound_state *cstate, | ||
846 | struct nfsd4_create_session *cr_ses) | ||
847 | { | ||
848 | return -1; /* stub */ | ||
849 | } | ||
850 | |||
851 | __be32 | ||
852 | nfsd4_destroy_session(struct svc_rqst *r, | ||
853 | struct nfsd4_compound_state *cstate, | ||
854 | struct nfsd4_destroy_session *sessionid) | ||
855 | { | ||
856 | return -1; /* stub */ | ||
857 | } | ||
858 | |||
859 | __be32 | ||
860 | nfsd4_sequence(struct svc_rqst *r, | ||
861 | struct nfsd4_compound_state *cstate, | ||
862 | struct nfsd4_sequence *seq) | ||
863 | { | ||
864 | return -1; /* stub */ | ||
865 | } | ||
866 | |||
867 | __be32 | ||
836 | nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, | 868 | nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
837 | struct nfsd4_setclientid *setclid) | 869 | struct nfsd4_setclientid *setclid) |
838 | { | 870 | { |