aboutsummaryrefslogtreecommitdiff
path: root/migration/multifd-qpl.c
blob: 056a68a060a52ce15f12968ac46f12c717445fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Multifd qpl compression accelerator implementation
 *
 * Copyright (c) 2023 Intel Corporation
 *
 * Authors:
 *  Yuan Liu<yuan1.liu@intel.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_qpl_register(void)
{
    /* noop */
}

migration_init(multifd_qpl_register);