From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751581AbdKVVHv (ORCPT ); Wed, 22 Nov 2017 16:07:51 -0500 Received: from bombadil.infradead.org ([65.50.211.133]:37385 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751260AbdKVVHr (ORCPT ); Wed, 22 Nov 2017 16:07:47 -0500 From: Matthew Wilcox To: linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Cc: Matthew Wilcox Subject: [PATCH 08/62] Explicitly include radix-tree.h Date: Wed, 22 Nov 2017 13:06:45 -0800 Message-Id: <20171122210739.29916-9-willy@infradead.org> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20171122210739.29916-1-willy@infradead.org> References: <20171122210739.29916-1-willy@infradead.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Matthew Wilcox These three files use the radix tree, but rely on an implicit include of radix-tree.h through fs.h. Signed-off-by: Matthew Wilcox --- drivers/usb/host/xhci.h | 1 + include/linux/fscache.h | 1 + lib/dma-debug.c | 1 + 3 files changed, 3 insertions(+) diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 99a014a920d3..054ce74524af 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -15,6 +15,7 @@ #include #include #include +#include #include #include diff --git a/include/linux/fscache.h b/include/linux/fscache.h index f4ff47d4a893..6a2f631a913f 100644 --- a/include/linux/fscache.h +++ b/include/linux/fscache.h @@ -22,6 +22,7 @@ #include #include #include +#include #if defined(CONFIG_FSCACHE) || defined(CONFIG_FSCACHE_MODULE) #define fscache_available() (1) diff --git a/lib/dma-debug.c b/lib/dma-debug.c index 1b34d210452c..fb4af570ce04 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include -- 2.15.0