From patchwork Fri Jan 25 04:39:30 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10780555 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8C39E746 for ; Fri, 25 Jan 2019 04:48:44 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6FAF82FBCF for ; Fri, 25 Jan 2019 04:48:44 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 61E632FBD6; Fri, 25 Jan 2019 04:48:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 16F212FBD0 for ; Fri, 25 Jan 2019 04:48:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727507AbfAYEsn (ORCPT ); Thu, 24 Jan 2019 23:48:43 -0500 Received: from condef-05.nifty.com ([202.248.20.70]:17166 "EHLO condef-05.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726271AbfAYEsm (ORCPT ); Thu, 24 Jan 2019 23:48:42 -0500 X-Greylist: delayed 336 seconds by postgrey-1.27 at vger.kernel.org; Thu, 24 Jan 2019 23:48:41 EST Received: from conuserg-08.nifty.com ([10.126.8.71])by condef-05.nifty.com with ESMTP id x0P4ei5q005027; Fri, 25 Jan 2019 13:40:44 +0900 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-08.nifty.com with ESMTP id x0P4dtwX005225; Fri, 25 Jan 2019 13:39:57 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com x0P4dtwX005225 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1548391197; bh=l2QkZoUINJcHwTUjAs2NF9C9FJvAyTfR0K8RqgdK+gg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xwPjnjNLbpVsuV0jOh0DTqCMNwYvKff4Zl2s+YW6aWZG2i4rofOMCCithEYnXFw6w 2r051qgqR9xXxheVKZt1KIZoXrZEQk15ct1NJD6UoniyDya9d6jgKZVrbgmedGujiJ cAo4IaNBBzx6dq3cvSGMJwF3dJSoHPp1K80bSFV1WRZZHZHX9uCPbr5CcYuuhV5mF4 l3B/jbGs35TRq8dpRnLck4uUgQFLMDN6HYTWsQ/hCEPlleH6A8jLy7gUusaKAuUmGR Vnsa4aWw6BNbOt1mmOQDOWN7TOSPQDv5UbLNtL7/HfBOBDvXTWqH6Mm3pcXRPJS45J 2/b/bZGB9LFlQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: Jason Gunthorpe , linux-rdma@vger.kernel.org, Doug Ledford Cc: Masahiro Yamada , Jason Gunthorpe , Sagi Grimberg , linux-kernel@vger.kernel.org, target-devel@vger.kernel.org, Bart Van Assche Subject: [PATCH 1/2] infiniband: remove unneeded header search paths Date: Fri, 25 Jan 2019 13:39:30 +0900 Message-Id: <1548391171-6407-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1548391171-6407-1-git-send-email-yamada.masahiro@socionext.com> References: <1548391171-6407-1-git-send-email-yamada.masahiro@socionext.com> Sender: target-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: target-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The included headers are located in include/target/. I was able to build these drivers without the extra header search paths. Signed-off-by: Masahiro Yamada Reviewed-by: Bart Van Assche --- drivers/infiniband/ulp/isert/Makefile | 1 - drivers/infiniband/ulp/srpt/Makefile | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/infiniband/ulp/isert/Makefile b/drivers/infiniband/ulp/isert/Makefile index c8bf242..a4a4766 100644 --- a/drivers/infiniband/ulp/isert/Makefile +++ b/drivers/infiniband/ulp/isert/Makefile @@ -1,2 +1 @@ -ccflags-y := -Idrivers/target -Idrivers/target/iscsi obj-$(CONFIG_INFINIBAND_ISERT) += ib_isert.o diff --git a/drivers/infiniband/ulp/srpt/Makefile b/drivers/infiniband/ulp/srpt/Makefile index e3ee4bd..43fbde4 100644 --- a/drivers/infiniband/ulp/srpt/Makefile +++ b/drivers/infiniband/ulp/srpt/Makefile @@ -1,2 +1 @@ -ccflags-y := -Idrivers/target obj-$(CONFIG_INFINIBAND_SRPT) += ib_srpt.o