Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 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 | |
| 19 | #ifndef __BTRFS_COMPRESSION_ |
| 20 | #define __BTRFS_COMPRESSION_ |
| 21 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 22 | void btrfs_init_compress(void); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 23 | void btrfs_exit_compress(void); |
| 24 | |
| 25 | int btrfs_compress_pages(int type, struct address_space *mapping, |
David Sterba | 38c3146 | 2017-02-14 19:04:07 +0100 | [diff] [blame^] | 26 | u64 start, struct page **pages, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 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); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 32 | int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page, |
| 33 | unsigned long start_byte, size_t srclen, size_t destlen); |
David Sterba | 14a3357 | 2017-02-14 17:58:04 +0100 | [diff] [blame] | 34 | int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start, |
Li Zefan | 3a39c18 | 2010-11-08 15:22:19 +0800 | [diff] [blame] | 35 | unsigned long total_out, u64 disk_start, |
Christoph Hellwig | 974b1ad | 2016-11-25 09:07:46 +0100 | [diff] [blame] | 36 | struct bio *bio); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 37 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 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); |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 45 | |
| 46 | enum btrfs_compression_type { |
| 47 | BTRFS_COMPRESS_NONE = 0, |
| 48 | BTRFS_COMPRESS_ZLIB = 1, |
| 49 | BTRFS_COMPRESS_LZO = 2, |
| 50 | BTRFS_COMPRESS_TYPES = 2, |
| 51 | BTRFS_COMPRESS_LAST = 3, |
| 52 | }; |
| 53 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 54 | struct btrfs_compress_op { |
| 55 | struct list_head *(*alloc_workspace)(void); |
| 56 | |
| 57 | void (*free_workspace)(struct list_head *workspace); |
| 58 | |
| 59 | int (*compress_pages)(struct list_head *workspace, |
| 60 | struct address_space *mapping, |
David Sterba | 38c3146 | 2017-02-14 19:04:07 +0100 | [diff] [blame^] | 61 | u64 start, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 62 | struct page **pages, |
| 63 | unsigned long nr_dest_pages, |
| 64 | unsigned long *out_pages, |
| 65 | unsigned long *total_in, |
| 66 | unsigned long *total_out, |
| 67 | unsigned long max_out); |
| 68 | |
Christoph Hellwig | 974b1ad | 2016-11-25 09:07:46 +0100 | [diff] [blame] | 69 | int (*decompress_bio)(struct list_head *workspace, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 70 | struct page **pages_in, |
| 71 | u64 disk_start, |
Christoph Hellwig | 974b1ad | 2016-11-25 09:07:46 +0100 | [diff] [blame] | 72 | struct bio *orig_bio, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 73 | size_t srclen); |
| 74 | |
| 75 | int (*decompress)(struct list_head *workspace, |
| 76 | unsigned char *data_in, |
| 77 | struct page *dest_page, |
| 78 | unsigned long start_byte, |
| 79 | size_t srclen, size_t destlen); |
| 80 | }; |
| 81 | |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 82 | extern const struct btrfs_compress_op btrfs_zlib_compress; |
| 83 | extern const struct btrfs_compress_op btrfs_lzo_compress; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 84 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 85 | #endif |