xref: /openbmc/qemu/include/hw/vfio/vfio-cpr.h (revision 63070ce368e1a2d430b9022a9db46f1817628efc)
1 /*
2  * VFIO CPR
3  *
4  * Copyright (c) 2025 Oracle and/or its affiliates.
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8 
9 #ifndef HW_VFIO_VFIO_CPR_H
10 #define HW_VFIO_VFIO_CPR_H
11 
12 struct VFIOContainerBase;
13 
14 bool vfio_cpr_register_container(struct VFIOContainerBase *bcontainer,
15                                  Error **errp);
16 void vfio_cpr_unregister_container(struct VFIOContainerBase *bcontainer);
17 
18 #endif /* HW_VFIO_VFIO_CPR_H */
19