From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965963Ab2DLUF4 (ORCPT ); Thu, 12 Apr 2012 16:05:56 -0400 Received: from mga09.intel.com ([134.134.136.24]:33503 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757760Ab2DLUFy (ORCPT ); Thu, 12 Apr 2012 16:05:54 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,351,1309762800"; d="scan'208";a="131781378" From: Jim Kukunas To: neilb@suse.de Cc: linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com Subject: [PATCH 1/4] lib/raid6: fix test program build Date: Thu, 12 Apr 2012 13:04:30 -0700 Message-Id: <1334261073-14781-2-git-send-email-james.t.kukunas@linux.intel.com> X-Mailer: git-send-email 1.7.8.5 In-Reply-To: <1334261073-14781-1-git-send-email-james.t.kukunas@linux.intel.com> References: <20120412161805.133c4ad0@notabene.brown> <1334261073-14781-1-git-send-email-james.t.kukunas@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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