예제 #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);
}