xdr4.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * linux/include/linux/lockd/xdr4.h
  4. *
  5. * XDR types for the NLM protocol
  6. *
  7. * Copyright (C) 1996 Olaf Kirch <[email protected]>
  8. */
  9. #ifndef LOCKD_XDR4_H
  10. #define LOCKD_XDR4_H
  11. #include <linux/fs.h>
  12. #include <linux/nfs.h>
  13. #include <linux/sunrpc/xdr.h>
  14. #include <linux/lockd/xdr.h>
  15. /* error codes new to NLMv4 */
  16. #define nlm4_deadlock cpu_to_be32(NLM_DEADLCK)
  17. #define nlm4_rofs cpu_to_be32(NLM_ROFS)
  18. #define nlm4_stale_fh cpu_to_be32(NLM_STALE_FH)
  19. #define nlm4_fbig cpu_to_be32(NLM_FBIG)
  20. #define nlm4_failed cpu_to_be32(NLM_FAILED)
  21. void nlm4svc_set_file_lock_range(struct file_lock *fl, u64 off, u64 len);
  22. bool nlm4svc_decode_void(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  23. bool nlm4svc_decode_testargs(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  24. bool nlm4svc_decode_lockargs(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  25. bool nlm4svc_decode_cancargs(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  26. bool nlm4svc_decode_unlockargs(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  27. bool nlm4svc_decode_res(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  28. bool nlm4svc_decode_reboot(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  29. bool nlm4svc_decode_shareargs(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  30. bool nlm4svc_decode_notify(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  31. bool nlm4svc_encode_testres(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  32. bool nlm4svc_encode_res(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  33. bool nlm4svc_encode_void(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  34. bool nlm4svc_encode_shareres(struct svc_rqst *rqstp, struct xdr_stream *xdr);
  35. extern const struct rpc_version nlm_version4;
  36. #endif /* LOCKD_XDR4_H */