Lines Matching refs:lzo_ctx

34 static int regcache_lzo_prepare(struct regcache_lzo_ctx *lzo_ctx)  in regcache_lzo_prepare()  argument
36 lzo_ctx->wmem = kmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL); in regcache_lzo_prepare()
37 if (!lzo_ctx->wmem) in regcache_lzo_prepare()
42 static int regcache_lzo_compress(struct regcache_lzo_ctx *lzo_ctx) in regcache_lzo_compress() argument
47 ret = lzo1x_1_compress(lzo_ctx->src, lzo_ctx->src_len, in regcache_lzo_compress()
48 lzo_ctx->dst, &compress_size, lzo_ctx->wmem); in regcache_lzo_compress()
49 if (ret != LZO_E_OK || compress_size > lzo_ctx->dst_len) in regcache_lzo_compress()
51 lzo_ctx->dst_len = compress_size; in regcache_lzo_compress()
55 static int regcache_lzo_decompress(struct regcache_lzo_ctx *lzo_ctx) in regcache_lzo_decompress() argument
60 dst_len = lzo_ctx->dst_len; in regcache_lzo_decompress()
61 ret = lzo1x_decompress_safe(lzo_ctx->src, lzo_ctx->src_len, in regcache_lzo_decompress()
62 lzo_ctx->dst, &dst_len); in regcache_lzo_decompress()
63 if (ret != LZO_E_OK || dst_len != lzo_ctx->dst_len) in regcache_lzo_decompress()
69 struct regcache_lzo_ctx *lzo_ctx) in regcache_lzo_compress_cache_block() argument
73 lzo_ctx->dst_len = lzo1x_worst_compress(PAGE_SIZE); in regcache_lzo_compress_cache_block()
74 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_compress_cache_block()
75 if (!lzo_ctx->dst) { in regcache_lzo_compress_cache_block()
76 lzo_ctx->dst_len = 0; in regcache_lzo_compress_cache_block()
80 ret = regcache_lzo_compress(lzo_ctx); in regcache_lzo_compress_cache_block()
87 struct regcache_lzo_ctx *lzo_ctx) in regcache_lzo_decompress_cache_block() argument
91 lzo_ctx->dst_len = lzo_ctx->decompressed_size; in regcache_lzo_decompress_cache_block()
92 lzo_ctx->dst = kmalloc(lzo_ctx->dst_len, GFP_KERNEL); in regcache_lzo_decompress_cache_block()
93 if (!lzo_ctx->dst) { in regcache_lzo_decompress_cache_block()
94 lzo_ctx->dst_len = 0; in regcache_lzo_decompress_cache_block()
98 ret = regcache_lzo_decompress(lzo_ctx); in regcache_lzo_decompress_cache_block()