linux/drivers/block/zram/backend_lzorle.c

// SPDX-License-Identifier: GPL-2.0-or-later

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/lzo.h>

#include "backend_lzorle.h"

static void lzorle_release_params(struct zcomp_params *params)
{}

static int lzorle_setup_params(struct zcomp_params *params)
{}

static int lzorle_create(struct zcomp_params *params, struct zcomp_ctx *ctx)
{}

static void lzorle_destroy(struct zcomp_ctx *ctx)
{}

static int lzorle_compress(struct zcomp_params *params, struct zcomp_ctx *ctx,
			   struct zcomp_req *req)
{}

static int lzorle_decompress(struct zcomp_params *params, struct zcomp_ctx *ctx,
			     struct zcomp_req *req)
{}

const struct zcomp_ops backend_lzorle =;