From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jim Kukunas Subject: [PATCH 1/4] lib/raid6: fix test program build Date: Wed, 11 Apr 2012 12:40:28 -0700 Message-ID: <1334173231-28595-2-git-send-email-james.t.kukunas@linux.intel.com> References: <1334173231-28595-1-git-send-email-james.t.kukunas@linux.intel.com> Return-path: In-Reply-To: <1334173231-28595-1-git-send-email-james.t.kukunas@linux.intel.com> Sender: linux-raid-owner@vger.kernel.org To: linux-raid@vger.kernel.org Cc: linux-kernel@vger.kernel.org, neilb@suse.de, hpa@zytor.com List-Id: linux-raid.ids drags in headers which are not visible to userspace, thus breaking the build for the test program. Signed-off-by: Jim Kukunas --- lib/raid6/algos.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/raid6/algos.c b/lib/raid6/algos.c index 8b02f60..f6a0f78 100644 --- a/lib/raid6/algos.c +++ b/lib/raid6/algos.c @@ -17,11 +17,11 @@ */ #include -#include #ifndef __KERNEL__ #include #include #else +#include #include #if !RAID6_USE_EMPTY_ZERO_PAGE /* In .bss so it's zeroed */ -- 1.7.8.5