mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
6438e30714
This structure will be used to carry kvm passthrough information related to zPCI devices. Reviewed-by: Niklas Schnelle <schnelle@linux.ibm.com> Reviewed-by: Pierre Morel <pmorel@linux.ibm.com> Reviewed-by: Christian Borntraeger <borntraeger@linux.ibm.com> Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com> Link: https://lore.kernel.org/r/20220606203325.110625-12-mjrosato@linux.ibm.com Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
15 lines
371 B
Makefile
15 lines
371 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for kernel virtual machines on s390
|
|
#
|
|
# Copyright IBM Corp. 2008
|
|
|
|
include $(srctree)/virt/kvm/Makefile.kvm
|
|
|
|
ccflags-y := -Ivirt/kvm -Iarch/s390/kvm
|
|
|
|
kvm-y += kvm-s390.o intercept.o interrupt.o priv.o sigp.o
|
|
kvm-y += diag.o gaccess.o guestdbg.o vsie.o pv.o
|
|
|
|
kvm-$(CONFIG_VFIO_PCI_ZDEV_KVM) += pci.o
|
|
obj-$(CONFIG_KVM) += kvm.o
|