From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756097Ab3KNQjc (ORCPT ); Thu, 14 Nov 2013 11:39:32 -0500 Received: from mail-pa0-f54.google.com ([209.85.220.54]:58722 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754676Ab3KNQix (ORCPT ); Thu, 14 Nov 2013 11:38:53 -0500 From: Peng Tao To: Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, Dmitry Eremin , Peng Tao , Andreas Dilger Subject: [PATCH 06/39] staging/lustre/lnet: build Lustre with Intel OFED for Xeon Phi Date: Fri, 15 Nov 2013 00:32:29 +0800 Message-Id: <1384446782-13741-7-git-send-email-bergwolf@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1384446782-13741-1-git-send-email-bergwolf@gmail.com> References: <1384446782-13741-1-git-send-email-bergwolf@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dmitry Eremin The compilation of Lustre with Intel OFED for Xeon Phi failed because of missing include of pci-dma.h header file. In Linux kernel includes this file included automatically from pci.h but in Intel Xeon Phi headers it's not true. So, just add this include explicitly. Lustre-change: http://review.whamcloud.com/7115 Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3637 Signed-off-by: Dmitry Eremin Reviewed-by: Liang Zhen Reviewed-by: Doug Oucharek Reviewed-by: Oleg Drokin Signed-off-by: Peng Tao Signed-off-by: Andreas Dilger --- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h b/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h index 938df0c..8cfd78b 100644 --- a/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h +++ b/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h @@ -38,6 +38,7 @@ * Author: Eric Barton */ +#include #include #include #include @@ -57,6 +58,7 @@ #include #include #include +#include #include #include -- 1.7.9.5