* [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again
@ 2017-11-17 14:40 Timothy Redaelli
2017-11-17 16:44 ` Luca Boccassi
2017-11-20 10:27 ` Eelco Chaudron
0 siblings, 2 replies; 4+ messages in thread
From: Timothy Redaelli @ 2017-11-17 14:40 UTC (permalink / raw)
To: dev; +Cc: Jingjing Wu
Fixes: 5b590fbe09b6 ("app/testpmd: add traffic management forwarding mode")
Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
---
app/test-pmd/Makefile | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile
index d21308fcd..4993c9184 100644
--- a/app/test-pmd/Makefile
+++ b/app/test-pmd/Makefile
@@ -83,10 +83,6 @@ ifeq ($(CONFIG_RTE_LIBRTE_BNXT_PMD),y)
LDLIBS += -lrte_pmd_bnxt
endif
-ifeq ($(CONFIG_RTE_LIBRTE_PMD_XENVIRT),y)
-LDLIBS += -lrte_pmd_xenvirt
-endif
-
ifeq ($(CONFIG_RTE_LIBRTE_PMD_SOFTNIC),y)
LDLIBS += -lrte_pmd_softnic
endif
--
2.14.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again
2017-11-17 14:40 [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again Timothy Redaelli
@ 2017-11-17 16:44 ` Luca Boccassi
2017-12-15 14:13 ` Thomas Monjalon
2017-11-20 10:27 ` Eelco Chaudron
1 sibling, 1 reply; 4+ messages in thread
From: Luca Boccassi @ 2017-11-17 16:44 UTC (permalink / raw)
To: Timothy Redaelli, dev; +Cc: Jingjing Wu
On Fri, 2017-11-17 at 15:40 +0100, Timothy Redaelli wrote:
> Fixes: 5b590fbe09b6 ("app/testpmd: add traffic management forwarding
> mode")
>
> Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
> ---
> app/test-pmd/Makefile | 4 ----
> 1 file changed, 4 deletions(-)
>
> diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile
> index d21308fcd..4993c9184 100644
> --- a/app/test-pmd/Makefile
> +++ b/app/test-pmd/Makefile
> @@ -83,10 +83,6 @@ ifeq ($(CONFIG_RTE_LIBRTE_BNXT_PMD),y)
> LDLIBS += -lrte_pmd_bnxt
> endif
>
> -ifeq ($(CONFIG_RTE_LIBRTE_PMD_XENVIRT),y)
> -LDLIBS += -lrte_pmd_xenvirt
> -endif
> -
> ifeq ($(CONFIG_RTE_LIBRTE_PMD_SOFTNIC),y)
> LDLIBS += -lrte_pmd_softnic
> endif
Acked-by: <bluca@debian.org>
--
Kind regards,
Luca Boccassi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again
2017-11-17 16:44 ` Luca Boccassi
@ 2017-12-15 14:13 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2017-12-15 14:13 UTC (permalink / raw)
To: Timothy Redaelli; +Cc: dev, Luca Boccassi, Jingjing Wu
17/11/2017 17:44, Luca Boccassi:
> On Fri, 2017-11-17 at 15:40 +0100, Timothy Redaelli wrote:
> > Fixes: 5b590fbe09b6 ("app/testpmd: add traffic management forwarding
> > mode")
> >
> > Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
>
> Acked-by: <bluca@debian.org>
Applied with this explanation:
The xenvirt PMD was removed from 17.11
while this link parameter was added.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again
2017-11-17 14:40 [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again Timothy Redaelli
2017-11-17 16:44 ` Luca Boccassi
@ 2017-11-20 10:27 ` Eelco Chaudron
1 sibling, 0 replies; 4+ messages in thread
From: Eelco Chaudron @ 2017-11-20 10:27 UTC (permalink / raw)
To: dev
On 17/11/17 15:40, Timothy Redaelli wrote:
> Fixes: 5b590fbe09b6 ("app/testpmd: add traffic management forwarding mode")
>
> Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
> ---
> app/test-pmd/Makefile | 4 ----
> 1 file changed, 4 deletions(-)
>
> diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile
> index d21308fcd..4993c9184 100644
> --- a/app/test-pmd/Makefile
> +++ b/app/test-pmd/Makefile
> @@ -83,10 +83,6 @@ ifeq ($(CONFIG_RTE_LIBRTE_BNXT_PMD),y)
> LDLIBS += -lrte_pmd_bnxt
> endif
>
> -ifeq ($(CONFIG_RTE_LIBRTE_PMD_XENVIRT),y)
> -LDLIBS += -lrte_pmd_xenvirt
> -endif
> -
> ifeq ($(CONFIG_RTE_LIBRTE_PMD_SOFTNIC),y)
> LDLIBS += -lrte_pmd_softnic
> endif
Acked-by: Eelco Chaudron <echaudro@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-12-15 14:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-17 14:40 [dpdk-dev] [PATCH] app/testpmd: Remove xenvirt again Timothy Redaelli
2017-11-17 16:44 ` Luca Boccassi
2017-12-15 14:13 ` Thomas Monjalon
2017-11-20 10:27 ` Eelco Chaudron
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).