2 * Copyright (C) 2014 Sergey Senozhatsky.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/kernel.h>
11 #include <linux/slab.h>
12 #include <linux/lzo.h>
14 #include "zcomp_lzo.h"
16 static void *lzo_create(void)
18 return kzalloc(LZO1X_MEM_COMPRESS
, GFP_KERNEL
);
21 static void lzo_destroy(void *private)
26 static int lzo_compress(const unsigned char *src
, unsigned char *dst
,
27 size_t *dst_len
, void *private)
29 int ret
= lzo1x_1_compress(src
, PAGE_SIZE
, dst
, dst_len
, private);
30 return ret
== LZO_E_OK
? 0 : ret
;
33 static int lzo_decompress(const unsigned char *src
, size_t src_len
,
36 size_t dst_len
= PAGE_SIZE
;
37 int ret
= lzo1x_decompress_safe(src
, src_len
, dst
, &dst_len
);
38 return ret
== LZO_E_OK
? 0 : ret
;
41 struct zcomp_backend zcomp_lzo
= {
42 .compress
= lzo_compress
,
43 .decompress
= lzo_decompress
,
45 .destroy
= lzo_destroy
,