From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761884AbYDTKsd (ORCPT ); Sun, 20 Apr 2008 06:48:33 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759403AbYDTKku (ORCPT ); Sun, 20 Apr 2008 06:40:50 -0400 Received: from pentafluge.infradead.org ([213.146.154.40]:56340 "EHLO pentafluge.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759351AbYDTKkt (ORCPT ); Sun, 20 Apr 2008 06:40:49 -0400 From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: "Robert P. J. Day" , Greg Kroah-Hartman Subject: [PATCH 25/36] SYSFS: Explicitly include required header file slab.h. Date: Sun, 20 Apr 2008 03:45:55 -0700 Message-Id: <1208688366-9252-25-git-send-email-gregkh@suse.de> X-Mailer: git-send-email 1.5.4.5 In-Reply-To: <20080420104516.GA9225@suse.de> References: <20080420104516.GA9225@suse.de> X-Bad-Reply: References and In-Reply-To but no 'Re:' in Subject. Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Robert P. J. Day After an experimental deletion of the unnecessary inclusion of from the header file , the following files under fs/sysfs were exposed as needing to explicitly include . Signed-off-by: Robert P. J. Day Signed-off-by: Greg Kroah-Hartman --- fs/sysfs/dir.c | 1 + fs/sysfs/file.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 4948d9b..a1c3a1f 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "sysfs.h" DEFINE_MUTEX(sysfs_mutex); diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index baa663e..a859c32 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include -- 1.5.4.5