1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 #ifndef SELFTEST_KVM_PROC_UTIL_H 3 #define SELFTEST_KVM_PROC_UTIL_H 4 5 #include <stdint.h> 6 7 unsigned int vfio_msix_to_host_irq(const char *vfio_device_bdf, int msix); 8 9 void proc_irq_set_smp_affinity(unsigned int irq, int cpu); 10 11 #endif /* SELFTEST_KVM_PROC_UTIL_H */ 12