blob: 619e64c274449a2ce8fe402384fc3a0b600a9a25 [file] [log] [blame]
Chris Masonc8b97812008-10-29 14:49:59 -04001/*
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
David Sterbaff763862017-02-14 19:30:39 +010022/*
23 * We want to make sure that amount of RAM required to uncompress an extent is
24 * reasonable, so we limit the total size in ram of a compressed extent to
25 * 128k. This is a crucial number because it also controls how easily we can
26 * spread reads across cpus for decompression.
27 *
28 * We also want to make sure the amount of IO required to do a random read is
29 * reasonably small, so we limit the size of a compressed extent to 128k.
30 */
31
32/* Maximum length of compressed data stored on disk */
33#define BTRFS_MAX_COMPRESSED (SZ_128K)
34/* Maximum size of data before compression */
35#define BTRFS_MAX_UNCOMPRESSED (SZ_128K)
36
Jeff Mahoney143bede2012-03-01 14:56:26 +010037void btrfs_init_compress(void);
Li Zefan261507a02010-12-17 14:21:50 +080038void btrfs_exit_compress(void);
39
40int btrfs_compress_pages(int type, struct address_space *mapping,
David Sterba38c31462017-02-14 19:04:07 +010041 u64 start, struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +080042 unsigned long *out_pages,
43 unsigned long *total_in,
44 unsigned long *total_out,
45 unsigned long max_out);
Li Zefan261507a02010-12-17 14:21:50 +080046int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
47 unsigned long start_byte, size_t srclen, size_t destlen);
David Sterba14a33572017-02-14 17:58:04 +010048int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start,
Li Zefan3a39c182010-11-08 15:22:19 +080049 unsigned long total_out, u64 disk_start,
Christoph Hellwig974b1ad2016-11-25 09:07:46 +010050 struct bio *bio);
Li Zefan261507a02010-12-17 14:21:50 +080051
Chris Masonc8b97812008-10-29 14:49:59 -040052int btrfs_submit_compressed_write(struct inode *inode, u64 start,
53 unsigned long len, u64 disk_start,
54 unsigned long compressed_len,
55 struct page **compressed_pages,
56 unsigned long nr_pages);
57int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
58 int mirror_num, unsigned long bio_flags);
Anand Jainebb87652016-03-10 17:26:59 +080059
60enum btrfs_compression_type {
61 BTRFS_COMPRESS_NONE = 0,
62 BTRFS_COMPRESS_ZLIB = 1,
63 BTRFS_COMPRESS_LZO = 2,
64 BTRFS_COMPRESS_TYPES = 2,
65 BTRFS_COMPRESS_LAST = 3,
66};
67
Li Zefan261507a02010-12-17 14:21:50 +080068struct btrfs_compress_op {
69 struct list_head *(*alloc_workspace)(void);
70
71 void (*free_workspace)(struct list_head *workspace);
72
73 int (*compress_pages)(struct list_head *workspace,
74 struct address_space *mapping,
David Sterba38c31462017-02-14 19:04:07 +010075 u64 start,
Li Zefan261507a02010-12-17 14:21:50 +080076 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +080077 unsigned long *out_pages,
78 unsigned long *total_in,
79 unsigned long *total_out,
80 unsigned long max_out);
81
Christoph Hellwig974b1ad2016-11-25 09:07:46 +010082 int (*decompress_bio)(struct list_head *workspace,
Li Zefan261507a02010-12-17 14:21:50 +080083 struct page **pages_in,
84 u64 disk_start,
Christoph Hellwig974b1ad2016-11-25 09:07:46 +010085 struct bio *orig_bio,
Li Zefan261507a02010-12-17 14:21:50 +080086 size_t srclen);
87
88 int (*decompress)(struct list_head *workspace,
89 unsigned char *data_in,
90 struct page *dest_page,
91 unsigned long start_byte,
92 size_t srclen, size_t destlen);
93};
94
David Sterbae8c9f182015-01-02 18:23:10 +010095extern const struct btrfs_compress_op btrfs_zlib_compress;
96extern const struct btrfs_compress_op btrfs_lzo_compress;
Li Zefan261507a02010-12-17 14:21:50 +080097
Chris Masonc8b97812008-10-29 14:49:59 -040098#endif