]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/btrfs/compression.h
btrfs: merge nr_pages input and output parameter in compress_pages
[mirror_ubuntu-artful-kernel.git] / fs / btrfs / compression.h
CommitLineData
c8b97818
CM
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
143bede5 22void btrfs_init_compress(void);
261507a0
LZ
23void btrfs_exit_compress(void);
24
25int btrfs_compress_pages(int type, struct address_space *mapping,
38c31464 26 u64 start, struct page **pages,
261507a0
LZ
27 unsigned long *out_pages,
28 unsigned long *total_in,
29 unsigned long *total_out,
30 unsigned long max_out);
261507a0
LZ
31int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
32 unsigned long start_byte, size_t srclen, size_t destlen);
14a3357b 33int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start,
3a39c18d 34 unsigned long total_out, u64 disk_start,
974b1adc 35 struct bio *bio);
261507a0 36
c8b97818
CM
37int 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);
42int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
43 int mirror_num, unsigned long bio_flags);
ebb8765b
AJ
44
45enum btrfs_compression_type {
46 BTRFS_COMPRESS_NONE = 0,
47 BTRFS_COMPRESS_ZLIB = 1,
48 BTRFS_COMPRESS_LZO = 2,
49 BTRFS_COMPRESS_TYPES = 2,
50 BTRFS_COMPRESS_LAST = 3,
51};
52
261507a0
LZ
53struct btrfs_compress_op {
54 struct list_head *(*alloc_workspace)(void);
55
56 void (*free_workspace)(struct list_head *workspace);
57
58 int (*compress_pages)(struct list_head *workspace,
59 struct address_space *mapping,
38c31464 60 u64 start,
261507a0 61 struct page **pages,
261507a0
LZ
62 unsigned long *out_pages,
63 unsigned long *total_in,
64 unsigned long *total_out,
65 unsigned long max_out);
66
974b1adc 67 int (*decompress_bio)(struct list_head *workspace,
261507a0
LZ
68 struct page **pages_in,
69 u64 disk_start,
974b1adc 70 struct bio *orig_bio,
261507a0
LZ
71 size_t srclen);
72
73 int (*decompress)(struct list_head *workspace,
74 unsigned char *data_in,
75 struct page *dest_page,
76 unsigned long start_byte,
77 size_t srclen, size_t destlen);
78};
79
e8c9f186
DS
80extern const struct btrfs_compress_op btrfs_zlib_compress;
81extern const struct btrfs_compress_op btrfs_lzo_compress;
261507a0 82
c8b97818 83#endif