| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/include/linux/lockd/xdr4.h | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
|  | 4 | * XDR types for the NLM protocol | 
|  | 5 | * | 
|  | 6 | * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de> | 
|  | 7 | */ | 
|  | 8 |  | 
|  | 9 | #ifndef LOCKD_XDR4_H | 
|  | 10 | #define LOCKD_XDR4_H | 
|  | 11 |  | 
|  | 12 | #include <linux/fs.h> | 
|  | 13 | #include <linux/nfs.h> | 
|  | 14 | #include <linux/sunrpc/xdr.h> | 
|  | 15 | #include <linux/lockd/xdr.h> | 
|  | 16 |  | 
|  | 17 | /* error codes new to NLMv4 */ | 
| Harvey Harrison | 77f18f5 | 2009-02-11 17:16:58 -0800 | [diff] [blame] | 18 | #define	nlm4_deadlock		cpu_to_be32(NLM_DEADLCK) | 
|  | 19 | #define	nlm4_rofs		cpu_to_be32(NLM_ROFS) | 
|  | 20 | #define	nlm4_stale_fh		cpu_to_be32(NLM_STALE_FH) | 
|  | 21 | #define	nlm4_fbig		cpu_to_be32(NLM_FBIG) | 
|  | 22 | #define	nlm4_failed		cpu_to_be32(NLM_FAILED) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
|  | 24 |  | 
|  | 25 |  | 
| Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 26 | int	nlm4svc_decode_testargs(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 27 | int	nlm4svc_encode_testres(struct svc_rqst *, __be32 *, struct nlm_res *); | 
|  | 28 | int	nlm4svc_decode_lockargs(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 29 | int	nlm4svc_decode_cancargs(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 30 | int	nlm4svc_decode_unlockargs(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 31 | int	nlm4svc_encode_res(struct svc_rqst *, __be32 *, struct nlm_res *); | 
|  | 32 | int	nlm4svc_decode_res(struct svc_rqst *, __be32 *, struct nlm_res *); | 
|  | 33 | int	nlm4svc_encode_void(struct svc_rqst *, __be32 *, void *); | 
|  | 34 | int	nlm4svc_decode_void(struct svc_rqst *, __be32 *, void *); | 
|  | 35 | int	nlm4svc_decode_shareargs(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 36 | int	nlm4svc_encode_shareres(struct svc_rqst *, __be32 *, struct nlm_res *); | 
|  | 37 | int	nlm4svc_decode_notify(struct svc_rqst *, __be32 *, struct nlm_args *); | 
|  | 38 | int	nlm4svc_decode_reboot(struct svc_rqst *, __be32 *, struct nlm_reboot *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* | 
|  | 40 | int	nlmclt_encode_testargs(struct rpc_rqst *, u32 *, struct nlm_args *); | 
|  | 41 | int	nlmclt_encode_lockargs(struct rpc_rqst *, u32 *, struct nlm_args *); | 
|  | 42 | int	nlmclt_encode_cancargs(struct rpc_rqst *, u32 *, struct nlm_args *); | 
|  | 43 | int	nlmclt_encode_unlockargs(struct rpc_rqst *, u32 *, struct nlm_args *); | 
|  | 44 | */ | 
| Trond Myklebust | d48c5f4 | 2007-05-14 17:21:26 -0400 | [diff] [blame] | 45 | extern struct rpc_version nlm_version4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
|  | 47 | #endif /* LOCKD_XDR4_H */ |