From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Robert P. J. Day" Subject: [PATCH] FILESYSTEMS: Explicitly include required header file slab.h. Date: Thu, 13 Mar 2008 22:33:53 -0400 (EDT) Message-ID: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Alexander Viro To: linux-fsdevel@vger.kernel.org Return-path: Received: from astoria.ccjclearline.com ([64.235.106.9]:41180 "EHLO astoria.ccjclearline.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751583AbYCNCfb (ORCPT ); Thu, 13 Mar 2008 22:35:31 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: After an experimental deletion of the unnecessary include of slab.h from the header file , the following files were exposed as needing to explicitly include . Signed-off-by: Robert P. J. Day --- fs/eventfd.c | 1 + fs/signalfd.c | 1 + fs/timerfd.c | 1 + 3 files changed, 3 insertions(+) diff --git a/fs/eventfd.c b/fs/eventfd.c index a9f130c..028cd17 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -16,6 +16,7 @@ #include #include #include +#include struct eventfd_ctx { wait_queue_head_t wqh; diff --git a/fs/signalfd.c b/fs/signalfd.c index cb2b63a..547cd40 100644 --- a/fs/signalfd.c +++ b/fs/signalfd.c @@ -28,6 +28,7 @@ #include #include #include +#include struct signalfd_ctx { sigset_t sigmask; diff --git a/fs/timerfd.c b/fs/timerfd.c index 10c80b5..6a2a06c 100644 --- a/fs/timerfd.c +++ b/fs/timerfd.c @@ -20,6 +20,7 @@ #include #include #include +#include struct timerfd_ctx { struct hrtimer tmr; ======================================================================== Robert P. J. Day Linux Consulting, Training and Annoying Kernel Pedantry: Have classroom, will lecture. http://crashcourse.ca Waterloo, Ontario, CANADA ========================================================================