xemu/migration/multifd-uadk.c
Shameer Kolothum f3d8bb759d migration/multifd: add uadk compression framework
Adds the skeleton to support uadk compression method.
Complete functionality will be added in subsequent patches.

Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
Reviewed-by: Zhangfei Gao <zhangfei.gao@linaro.org>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
2024-06-14 14:01:29 -03:00

20 lines
486 B
C

/*
* Multifd UADK compression accelerator implementation
*
* Copyright (c) 2024 Huawei Technologies R & D (UK) Ltd
*
* Authors:
* Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qemu/module.h"
static void multifd_uadk_register(void)
{
/* noop for now */
}
migration_init(multifd_uadk_register);