DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ajit Khaparde <ajit.khaparde@broadcom.com>
To: David Marchand <david.marchand@redhat.com>
Cc: dpdk-dev <dev@dpdk.org>, Ferruh Yigit <ferruh.yigit@intel.com>,
	 Thomas Monjalon <thomas@monjalon.net>,
	Somnath Kotur <somnath.kotur@broadcom.com>,
	 Randy Schacher <stuart.schacher@broadcom.com>,
	 Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com>,
	 Peter Spreadborough <peter.spreadborough@broadcom.com>
Subject: Re: [dpdk-dev] [PATCH] net/bnxt: fix build issue
Date: Fri, 10 Jul 2020 06:55:09 -0700	[thread overview]
Message-ID: <CACZ4nhvqAA1ZVRNVNsvGUC-mHPfGCGcobzfH8+ccDfWsQh+vYQ@mail.gmail.com> (raw)
In-Reply-To: <CACZ4nhtoVy2=6SEuF=MKi6xvK56PC+tC4veue1Ru=cqOxRqGUw@mail.gmail.com>

On Thu, Jul 9, 2020 at 7:34 AM Ajit Khaparde <ajit.khaparde@broadcom.com>
wrote:

>
>
> On Thu, Jul 9, 2020 at 1:15 AM David Marchand <david.marchand@redhat.com>
> wrote:
>
>> In existing build env, RTE_LIBRTE_BNXT_PMD_SYSTEM is unset.
>> Testing against a n value does not work and we end up with a link issue:
>>
>> /usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_alloc':
>> .../dpdk/drivers/net/bnxt/tf_core/tf_em_common.c:1040: undefined reference
>>  to `tf_em_ext_alloc'
>> /usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_free':
>> .../dpdk/drivers/net/bnxt/tf_core/tf_em_common.c:1047: undefined reference
>>  to `tf_em_ext_free'
>> collect2: error: ld returned 1 exit status
>> gmake[4]: *** [.../dpdk/mk/rte.lib.mk:95: librte_pmd_bnxt.so.20.0.3]
>>  Error 1
>> gmake[3]: *** [.../dpdk/mk/rte.subdir.mk:35: bnxt] Error 2
>>
>> Fixes: b2da02480cb7 ("net/bnxt: support EEM system memory")
>>
>> Signed-off-by: David Marchand <david.marchand@redhat.com>
>>
> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
>
Patch applied to dpdk-next-net-brcm. Thanks


>
>
>> ---
>>  drivers/net/bnxt/tf_core/Makefile | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/net/bnxt/tf_core/Makefile
>> b/drivers/net/bnxt/tf_core/Makefile
>> index b4fbdd00fc..806471427c 100644
>> --- a/drivers/net/bnxt/tf_core/Makefile
>> +++ b/drivers/net/bnxt/tf_core/Makefile
>> @@ -16,10 +16,10 @@ SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_msg.c
>>  SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_tbl.c
>>  SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_em_common.c
>>  SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_em_internal.c
>> -ifeq ($(CONFIG_RTE_LIBRTE_BNXT_PMD_SYSTEM), n)
>> -SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_em_host.c
>> +ifeq ($(CONFIG_RTE_LIBRTE_BNXT_PMD_SYSTEM),y)
>> +SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_em_system.c
>>  else
>> -SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD_SYSTEM) += tf_core/tf_em_system.c
>> +SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_em_host.c
>>  endif
>>  SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_session.c
>>  SRCS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += tf_core/tf_device.c
>> --
>> 2.23.0
>>
>>

  reply	other threads:[~2020-07-10 13:55 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-09  8:15 David Marchand
2020-07-09 12:10 ` Ferruh Yigit
2020-07-09 14:33   ` Ajit Khaparde
2020-07-09 14:34 ` Ajit Khaparde
2020-07-10 13:55   ` Ajit Khaparde [this message]
2020-07-29  0:48 ` Ajit Khaparde
2020-07-29  6:56   ` David Marchand

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CACZ4nhvqAA1ZVRNVNsvGUC-mHPfGCGcobzfH8+ccDfWsQh+vYQ@mail.gmail.com \
    --to=ajit.khaparde@broadcom.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=peter.spreadborough@broadcom.com \
    --cc=somnath.kotur@broadcom.com \
    --cc=stuart.schacher@broadcom.com \
    --cc=thomas@monjalon.net \
    --cc=venkatkumar.duvvuru@broadcom.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).