-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaeon_compression.h
51 lines (40 loc) · 1.35 KB
/
aeon_compression.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef __AEON_COMPRESSION_H
#define __AEON_COMPRESSION_H
#ifdef CONFIG_AEON_FS_COMPRESSION
struct aeon_compress_op {
struct list_head *(*alloc_workspace)(void);
void (*free_workspace)(struct list_head *workspace);
int (*compress_pages)(struct list_head *workspace,
struct address_space *mapping,
u64 start,
struct page **pages,
unsigned long *out_pages,
unsigned long *total_in,
unsigned long *total_out);
int (*compress_pages_to_pmem)(struct list_head *workspace,
const void *src,
const int llen);
int (*decompress)(struct list_head *workspace,
unsigned char *data_in,
struct page *dest_page,
unsigned long start_byte,
size_t srclen, size_t destlen);
void (*set_level)(struct list_head *ws, unsigned int type);
};
extern void __init aeon_init_compress(void);
extern void __cold aeon_exit_compress(void);
int aeon_compress_data_iter(struct inode *inode, struct iov_iter *i);
ssize_t aeon_decompress_data_iter(ssize_t len, struct iov_iter *i);
void *aeon_compress(const char __user *data, size_t len,
size_t *outlen, int *compressed);
void *aeon_decompress(const void *data, struct aeon_extent *ae,
struct aeon_inode *pi);
#else
static inline void __init aeon_init_compress(void)
{
}
static inline void __cold aeon_exit_compress(void)
{
}
#endif
#endif