jdata.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License v.2.
  8. */
  9. #ifndef __FILE_DOT_H__
  10. #define __FILE_DOT_H__
  11. int gfs2_jdata_get_buffer(struct gfs2_inode *ip, uint64_t block, int new,
  12. struct buffer_head **bhp);
  13. typedef int (*read_copy_fn_t) (struct buffer_head *bh, char **buf,
  14. unsigned int offset, unsigned int size);
  15. typedef int (*write_copy_fn_t) (struct gfs2_inode *ip,
  16. struct buffer_head *bh, const char **buf,
  17. unsigned int offset, unsigned int size);
  18. int gfs2_copy2mem(struct buffer_head *bh, char **buf,
  19. unsigned int offset, unsigned int size);
  20. int gfs2_copy2user(struct buffer_head *bh, char __user **buf,
  21. unsigned int offset, unsigned int size);
  22. int gfs2_jdata_read(struct gfs2_inode *ip, char __user *buf,
  23. uint64_t offset, unsigned int size,
  24. read_copy_fn_t copy_fn);
  25. int gfs2_copy_from_mem(struct gfs2_inode *ip,
  26. struct buffer_head *bh, const char **buf,
  27. unsigned int offset, unsigned int size);
  28. int gfs2_copy_from_user(struct gfs2_inode *ip,
  29. struct buffer_head *bh, const char __user **buf,
  30. unsigned int offset, unsigned int size);
  31. int gfs2_jdata_write(struct gfs2_inode *ip, const char __user *buf,
  32. uint64_t offset, unsigned int size,
  33. write_copy_fn_t copy_fn);
  34. static inline int gfs2_jdata_read_mem(struct gfs2_inode *ip, char *buf,
  35. uint64_t offset, unsigned int size)
  36. {
  37. return gfs2_jdata_read(ip, (__force char __user *)buf, offset, size, gfs2_copy2mem);
  38. }
  39. static inline int gfs2_jdata_write_mem(struct gfs2_inode *ip, const char *buf,
  40. uint64_t offset, unsigned int size)
  41. {
  42. return gfs2_jdata_write(ip, (__force const char __user *)buf, offset, size, gfs2_copy_from_mem);
  43. }
  44. #endif /* __FILE_DOT_H__ */