compression.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. void btrfs_init_compress(void);
  21. void btrfs_exit_compress(void);
  22. int btrfs_compress_pages(int type, struct address_space *mapping,
  23. u64 start, unsigned long len,
  24. struct page **pages,
  25. unsigned long nr_dest_pages,
  26. unsigned long *out_pages,
  27. unsigned long *total_in,
  28. unsigned long *total_out,
  29. unsigned long max_out);
  30. int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
  31. unsigned long start_byte, size_t srclen, size_t destlen);
  32. int btrfs_decompress_buf2page(char *buf, unsigned long buf_start,
  33. unsigned long total_out, u64 disk_start,
  34. struct bio_vec *bvec, int vcnt,
  35. unsigned long *pg_index,
  36. unsigned long *pg_offset);
  37. int btrfs_submit_compressed_write(struct inode *inode, u64 start,
  38. unsigned long len, u64 disk_start,
  39. unsigned long compressed_len,
  40. struct page **compressed_pages,
  41. unsigned long nr_pages);
  42. int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
  43. int mirror_num, unsigned long bio_flags);
  44. void btrfs_clear_biovec_end(struct bio_vec *bvec, int vcnt,
  45. unsigned long pg_index,
  46. unsigned long pg_offset);
  47. enum btrfs_compression_type {
  48. BTRFS_COMPRESS_NONE = 0,
  49. BTRFS_COMPRESS_ZLIB = 1,
  50. BTRFS_COMPRESS_LZO = 2,
  51. BTRFS_COMPRESS_TYPES = 2,
  52. BTRFS_COMPRESS_LAST = 3,
  53. };
  54. struct btrfs_compress_op {
  55. struct list_head *(*alloc_workspace)(void);
  56. void (*free_workspace)(struct list_head *workspace);
  57. int (*compress_pages)(struct list_head *workspace,
  58. struct address_space *mapping,
  59. u64 start, unsigned long len,
  60. struct page **pages,
  61. unsigned long nr_dest_pages,
  62. unsigned long *out_pages,
  63. unsigned long *total_in,
  64. unsigned long *total_out,
  65. unsigned long max_out);
  66. int (*decompress_biovec)(struct list_head *workspace,
  67. struct page **pages_in,
  68. u64 disk_start,
  69. struct bio_vec *bvec,
  70. int vcnt,
  71. size_t srclen);
  72. int (*decompress)(struct list_head *workspace,
  73. unsigned char *data_in,
  74. struct page *dest_page,
  75. unsigned long start_byte,
  76. size_t srclen, size_t destlen);
  77. };
  78. extern const struct btrfs_compress_op btrfs_zlib_compress;
  79. extern const struct btrfs_compress_op btrfs_lzo_compress;
  80. #endif