xref: /openbmc/qemu/include/hw/vfio/vfio-cpr.h (revision 17612f972f02fcafae2c70aa96c9d2e7a4c6d36d)
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