From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from rcdn-iport-6.cisco.com (rcdn-iport-6.cisco.com [173.37.86.77]) by dpdk.org (Postfix) with ESMTP id B52AB7CBC for ; Wed, 21 Nov 2018 15:34:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=1122; q=dns/txt; s=iport; t=1542810859; x=1544020459; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=LafgN2Y7BGJ54CjbnYh933ngsk5jMQe7ec+q4/fCPmA=; b=j+EtBtKR11gLSnwbZ4CRlNWUjrzqJth4PcbeGvLGLToH+xo8h8uivg38 hK9LYXsCIjZz3MrdTdmqxfSn6JNgxHBLdy8Rxy/RJtnw+4rzlqthxQfd3 dxteLOsXuOELyRPJpdFms+QWWVhrQZy0nUNsUlXUP3MR31BeykpKMgCkD I=; X-IronPort-AV: E=Sophos;i="5.56,261,1539648000"; d="scan'208";a="486507598" Received: from alln-core-4.cisco.com ([173.36.13.137]) by rcdn-iport-6.cisco.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Nov 2018 14:34:18 +0000 Received: from HYONKIM-7R0DR.cisco.com ([10.24.50.209]) by alln-core-4.cisco.com (8.15.2/8.15.2) with ESMTPS id wALEYENP024475 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 21 Nov 2018 14:34:17 GMT Date: Wed, 21 Nov 2018 23:34:14 +0900 From: Hyong Youb Kim To: Luca Boccassi Cc: stable@dpdk.org, johndale@cisco.com, aconole@redhat.com Message-ID: <20181121143412.GA6476@HYONKIM-7R0DR.cisco.com> References: <20181121140751.31894-1-bluca@debian.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181121140751.31894-1-bluca@debian.org> User-Agent: Mutt/1.10.0 (2018-05-17) X-Outbound-SMTP-Client: 10.24.50.209, [10.24.50.209] X-Outbound-Node: alln-core-4.cisco.com Subject: Re: [dpdk-stable] [PATCH 16.11] net/enic: add dependency on librte_kvargs X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 14:34:20 -0000 On Wed, Nov 21, 2018 at 02:07:51PM +0000, Luca Boccassi wrote: > The enic PMD uses functions for kvargs, so it needs to link to it. > > Fixes: a40901580c48 ("net/enic: add devarg to specify ingress VLAN rewrite mode") > Signed-off-by: Luca Boccassi > --- > This is necessary to fix a build failure with parallel make after > applying a40901580c48 > > drivers/net/enic/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/enic/Makefile b/drivers/net/enic/Makefile > index 3926b795c..3ed1d90aa 100644 > --- a/drivers/net/enic/Makefile > +++ b/drivers/net/enic/Makefile > @@ -68,5 +68,6 @@ DEPDIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += lib/librte_eal lib/librte_ether > DEPDIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += lib/librte_mempool lib/librte_mbuf > DEPDIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += lib/librte_net > DEPDIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += lib/librte_hash > +DEPDIRS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += lib/librte_kvargs > > include $(RTE_SDK)/mk/rte.lib.mk > -- > 2.19.1 > Acked-by: Hyong Youb Kim Thank you. -Hyong