From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935297AbcIRVwe (ORCPT ); Sun, 18 Sep 2016 17:52:34 -0400 Received: from mail5.windriver.com ([192.103.53.11]:41154 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932119AbcIRVwZ (ORCPT ); Sun, 18 Sep 2016 17:52:25 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Al Viro Subject: [PATCH] dcache: fix implicit wait.h include in Date: Sun, 18 Sep 2016 17:51:50 -0400 Message-ID: <20160918215150.23215-1-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.8.4 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org To fix: In file included from fs/notify/fsnotify.c:19:0: ./include/linux/dcache.h:103:3: error: unknown type name ‘wait_queue_head_t’ wait_queue_head_t *d_wait; /* in-lookup ones only */ ^ ./include/linux/dcache.h:233:6: error: unknown type name ‘wait_queue_head_t’ wait_queue_head_t *); ^ make[2]: *** [fs/notify/fsnotify.o] Error 1 The same fail appears in file included from security/security.c:15:0: This was observed in -rt, but it is quite possible the same issue will appear for certain configs or arch builds on mainline as well. Fixes: d9171b934526 ("parallel lookups machinery, part 4 (and last)") Cc: Al Viro Signed-off-by: Paul Gortmaker diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 5ff3e9a4fe5f..b719cb8b6b5d 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -3,6 +3,7 @@ #include #include +#include #include #include #include -- 2.5.0