xdr4.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * linux/include/linux/lockd/xdr4.h
  3. *
  4. * XDR types for the NLM protocol
  5. *
  6. * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
  7. */
  8. #ifndef LOCKD_XDR4_H
  9. #define LOCKD_XDR4_H
  10. #include <linux/fs.h>
  11. #include <linux/nfs.h>
  12. #include <linux/sunrpc/xdr.h>
  13. #include <linux/lockd/xdr.h>
  14. /* error codes new to NLMv4 */
  15. #define nlm4_deadlock cpu_to_be32(NLM_DEADLCK)
  16. #define nlm4_rofs cpu_to_be32(NLM_ROFS)
  17. #define nlm4_stale_fh cpu_to_be32(NLM_STALE_FH)
  18. #define nlm4_fbig cpu_to_be32(NLM_FBIG)
  19. #define nlm4_failed cpu_to_be32(NLM_FAILED)
  20. int nlm4svc_decode_testargs(struct svc_rqst *, __be32 *, struct nlm_args *);
  21. int nlm4svc_encode_testres(struct svc_rqst *, __be32 *, struct nlm_res *);
  22. int nlm4svc_decode_lockargs(struct svc_rqst *, __be32 *, struct nlm_args *);
  23. int nlm4svc_decode_cancargs(struct svc_rqst *, __be32 *, struct nlm_args *);
  24. int nlm4svc_decode_unlockargs(struct svc_rqst *, __be32 *, struct nlm_args *);
  25. int nlm4svc_encode_res(struct svc_rqst *, __be32 *, struct nlm_res *);
  26. int nlm4svc_decode_res(struct svc_rqst *, __be32 *, struct nlm_res *);
  27. int nlm4svc_encode_void(struct svc_rqst *, __be32 *, void *);
  28. int nlm4svc_decode_void(struct svc_rqst *, __be32 *, void *);
  29. int nlm4svc_decode_shareargs(struct svc_rqst *, __be32 *, struct nlm_args *);
  30. int nlm4svc_encode_shareres(struct svc_rqst *, __be32 *, struct nlm_res *);
  31. int nlm4svc_decode_notify(struct svc_rqst *, __be32 *, struct nlm_args *);
  32. int nlm4svc_decode_reboot(struct svc_rqst *, __be32 *, struct nlm_reboot *);
  33. /*
  34. int nlmclt_encode_testargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  35. int nlmclt_encode_lockargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  36. int nlmclt_encode_cancargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  37. int nlmclt_encode_unlockargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  38. */
  39. extern const struct rpc_version nlm_version4;
  40. #endif /* LOCKD_XDR4_H */