compression.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (C) 2008 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #ifndef __BTRFS_COMPRESSION_
  19. #define __BTRFS_COMPRESSION_
  20. int btrfs_zlib_decompress(unsigned char *data_in,
  21. struct page *dest_page,
  22. unsigned long start_byte,
  23. size_t srclen, size_t destlen);
  24. int btrfs_zlib_compress_pages(struct address_space *mapping,
  25. u64 start, unsigned long len,
  26. struct page **pages,
  27. unsigned long nr_dest_pages,
  28. unsigned long *out_pages,
  29. unsigned long *total_in,
  30. unsigned long *total_out,
  31. unsigned long max_out);
  32. int btrfs_zlib_decompress_biovec(struct page **pages_in,
  33. u64 disk_start,
  34. struct bio_vec *bvec,
  35. int vcnt,
  36. size_t srclen);
  37. void btrfs_zlib_exit(void);
  38. int btrfs_submit_compressed_write(struct inode *inode, u64 start,
  39. unsigned long len, u64 disk_start,
  40. unsigned long compressed_len,
  41. struct page **compressed_pages,
  42. unsigned long nr_pages);
  43. int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
  44. int mirror_num, unsigned long bio_flags);
  45. #endif