From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:13260 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2407237AbfJXLmF (ORCPT ); Thu, 24 Oct 2019 07:42:05 -0400 Received: from pps.filterd (m0098399.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x9OBbB4d138055 for ; Thu, 24 Oct 2019 07:42:04 -0400 Received: from e06smtp05.uk.ibm.com (e06smtp05.uk.ibm.com [195.75.94.101]) by mx0a-001b2d01.pphosted.com with ESMTP id 2vub4qgeja-1 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 24 Oct 2019 07:42:04 -0400 Received: from localhost by e06smtp05.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 24 Oct 2019 12:42:02 +0100 From: Janosch Frank Subject: [RFC 08/37] KVM: s390: add missing include in gmap.h Date: Thu, 24 Oct 2019 07:40:30 -0400 In-Reply-To: <20191024114059.102802-1-frankja@linux.ibm.com> References: <20191024114059.102802-1-frankja@linux.ibm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20191024114059.102802-9-frankja@linux.ibm.com> Sender: linux-s390-owner@vger.kernel.org List-ID: To: kvm@vger.kernel.org Cc: linux-s390@vger.kernel.org, thuth@redhat.com, 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, frankja@linux.ibm.com From: Claudio Imbrenda 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. 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. Signed-off-by: Claudio Imbrenda --- arch/s390/include/asm/gmap.h | 1 + 1 file changed, 1 insertion(+) 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 #include +#include /* Generic bits for GMAP notification on DAT table entry changes. */ #define GMAP_NOTIFY_SHADOW 0x2 -- 2.20.1