forked from mirror/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
453 B
C
22 lines
453 B
C
/*
|
|
* vhost-vdpa.h
|
|
*
|
|
* Copyright(c) 2017-2018 Intel Corporation.
|
|
* Copyright(c) 2020 Red Hat, Inc.
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef VHOST_VDPA_H
|
|
#define VHOST_VDPA_H
|
|
|
|
#define TYPE_VHOST_VDPA "vhost-vdpa"
|
|
|
|
struct vhost_net *vhost_vdpa_get_vhost_net(NetClientState *nc);
|
|
|
|
extern const int vdpa_feature_bits[];
|
|
|
|
#endif /* VHOST_VDPA_H */
|