mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
Switch KVM/s390 to use the new gmap code. Remove includes to <gmap.h> and include "gmap.h" instead; fix all the existing users of the old gmap functions to use the new ones instead. Fix guest storage key access functions to work with the new gmap. Acked-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
16 lines
403 B
Makefile
16 lines
403 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-y += dat.o gmap.o faultin.o
|
|
|
|
kvm-$(CONFIG_VFIO_PCI_ZDEV_KVM) += pci.o
|
|
obj-$(CONFIG_KVM) += kvm.o
|