With the rename of VFIOContainerBase to VFIOContainer, the vfio-container-base.h header file containing the struct definition is misleading. Rename it from vfio-container-base.h to vfio-container.h accordingly, fixing up the name of the include guard at the same time. Signed-off-by: Mark Cave-Ayland <mark.caveayland@nutanix.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/qemu-devel/20250925113159.1760317-5-mark.caveayland@nutanix.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
24 lines
488 B
C
24 lines
488 B
C
/*
|
|
* vfio-user specific definitions.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef HW_VFIO_USER_CONTAINER_H
|
|
#define HW_VFIO_USER_CONTAINER_H
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "hw/vfio/vfio-container.h"
|
|
#include "hw/vfio-user/proxy.h"
|
|
|
|
/* MMU container sub-class for vfio-user. */
|
|
struct VFIOUserContainer {
|
|
VFIOContainer parent_obj;
|
|
|
|
VFIOUserProxy *proxy;
|
|
};
|
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VFIOUserContainer, VFIO_IOMMU_USER);
|
|
|
|
#endif /* HW_VFIO_USER_CONTAINER_H */
|