示例#1
0
static void deflate_exit(struct crypto_tfm *tfm)
{
    struct deflate_ctx *ctx = crypto_tfm_ctx(tfm);

    deflate_comp_exit(ctx);
    deflate_decomp_exit(ctx);
}
示例#2
0
文件: deflate.c 项目: avagin/linux
static void __deflate_exit(void *ctx)
{
	deflate_comp_exit(ctx);
	deflate_decomp_exit(ctx);
}