From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:46510 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726074AbfKMM2D (ORCPT ); Wed, 13 Nov 2019 07:28:03 -0500 Subject: Re: [RFC 08/37] KVM: s390: add missing include in gmap.h References: <20191024114059.102802-1-frankja@linux.ibm.com> <20191024114059.102802-9-frankja@linux.ibm.com> From: Thomas Huth Message-ID: <2eeb323f-0bf0-60d7-e8ea-58bd0262fd76@redhat.com> Date: Wed, 13 Nov 2019 13:27:50 +0100 MIME-Version: 1.0 In-Reply-To: <20191024114059.102802-9-frankja@linux.ibm.com> Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Sender: linux-s390-owner@vger.kernel.org List-ID: To: Janosch Frank , kvm@vger.kernel.org Cc: linux-s390@vger.kernel.org, david@redhat.com, borntraeger@de.ibm.com, imbrenda@linux.ibm.com, mihajlov@linux.ibm.com, mimu@linux.ibm.com, cohuck@redhat.com, gor@linux.ibm.com On 24/10/2019 13.40, Janosch Frank wrote: > From: Claudio Imbrenda >=20 > gmap.h references radix trees, but does not include linux/radix-tree.h > itself. Sources that include gmap.h but not also radix-tree.h will > therefore fail to compile. >=20 > This simple patch adds the include for linux/radix-tree.h in gmap.h so > that users of gmap.h will be able to compile. >=20 > Signed-off-by: Claudio Imbrenda > --- > arch/s390/include/asm/gmap.h | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/arch/s390/include/asm/gmap.h b/arch/s390/include/asm/gmap.h > index eab6a2ec3599..99b3eedda26e 100644 > --- a/arch/s390/include/asm/gmap.h > +++ b/arch/s390/include/asm/gmap.h > @@ -10,6 +10,7 @@ > #define _ASM_S390_GMAP_H > =20 > #include > +#include > =20 > /* Generic bits for GMAP notification on DAT table entry changes. */ > #define GMAP_NOTIFY_SHADOW=090x2 >=20 Reviewed-by: Thomas Huth