xdr4.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 __constant_htonl(NLM_DEADLCK)
  16. #define nlm4_rofs __constant_htonl(NLM_ROFS)
  17. #define nlm4_stale_fh __constant_htonl(NLM_STALE_FH)
  18. #define nlm4_fbig __constant_htonl(NLM_FBIG)
  19. #define nlm4_failed __constant_htonl(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. #endif /* LOCKD_XDR4_H */