* [dpdk-dev] [PATCH] doc: add missing library to release notes
@ 2016-11-01 17:03 Ferruh Yigit
2016-11-01 17:03 ` [dpdk-dev] [PATCH] net: remove mempool as a dependency Ferruh Yigit
2016-11-03 12:28 ` [dpdk-dev] [PATCH] doc: add missing library to release notes Mcnamara, John
0 siblings, 2 replies; 5+ messages in thread
From: Ferruh Yigit @ 2016-11-01 17:03 UTC (permalink / raw)
To: dev
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
CC: Olivier Matz <olivier.matz@6wind.com>
---
doc/guides/rel_notes/release_16_11.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/doc/guides/rel_notes/release_16_11.rst b/doc/guides/rel_notes/release_16_11.rst
index aa0c09a..5f185be 100644
--- a/doc/guides/rel_notes/release_16_11.rst
+++ b/doc/guides/rel_notes/release_16_11.rst
@@ -248,6 +248,7 @@ The libraries prepended with a plus sign were incremented in this version.
librte_mbuf.so.2
librte_mempool.so.2
librte_meter.so.1
+ librte_net.so.1
librte_pdump.so.1
librte_pipeline.so.3
librte_pmd_bond.so.1
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH] net: remove mempool as a dependency
2016-11-01 17:03 [dpdk-dev] [PATCH] doc: add missing library to release notes Ferruh Yigit
@ 2016-11-01 17:03 ` Ferruh Yigit
2016-11-06 22:26 ` Thomas Monjalon
2016-11-03 12:28 ` [dpdk-dev] [PATCH] doc: add missing library to release notes Mcnamara, John
1 sibling, 1 reply; 5+ messages in thread
From: Ferruh Yigit @ 2016-11-01 17:03 UTC (permalink / raw)
To: dev
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
lib/librte_net/Makefile | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/librte_net/Makefile b/lib/librte_net/Makefile
index e5758ce..20cf664 100644
--- a/lib/librte_net/Makefile
+++ b/lib/librte_net/Makefile
@@ -45,7 +45,6 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include := rte_ip.h rte_tcp.h rte_udp.h
SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_sctp.h rte_icmp.h rte_arp.h
SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_ether.h rte_gre.h rte_net.h
-DEPDIRS-$(CONFIG_RTE_LIBRTE_NET) += lib/librte_eal lib/librte_mempool
-DEPDIRS-$(CONFIG_RTE_LIBRTE_NET) += lib/librte_mbuf
+DEPDIRS-$(CONFIG_RTE_LIBRTE_NET) += lib/librte_eal lib/librte_mbuf
include $(RTE_SDK)/mk/rte.lib.mk
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: add missing library to release notes
2016-11-01 17:03 [dpdk-dev] [PATCH] doc: add missing library to release notes Ferruh Yigit
2016-11-01 17:03 ` [dpdk-dev] [PATCH] net: remove mempool as a dependency Ferruh Yigit
@ 2016-11-03 12:28 ` Mcnamara, John
2016-11-06 22:26 ` Thomas Monjalon
1 sibling, 1 reply; 5+ messages in thread
From: Mcnamara, John @ 2016-11-03 12:28 UTC (permalink / raw)
To: Yigit, Ferruh, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ferruh Yigit
> Sent: Tuesday, November 1, 2016 5:04 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] doc: add missing library to release notes
>
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
> CC: Olivier Matz <olivier.matz@6wind.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] doc: add missing library to release notes
2016-11-03 12:28 ` [dpdk-dev] [PATCH] doc: add missing library to release notes Mcnamara, John
@ 2016-11-06 22:26 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2016-11-06 22:26 UTC (permalink / raw)
To: Yigit, Ferruh; +Cc: dev, Mcnamara, John
> > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
>
> Acked-by: John McNamara <john.mcnamara@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] net: remove mempool as a dependency
2016-11-01 17:03 ` [dpdk-dev] [PATCH] net: remove mempool as a dependency Ferruh Yigit
@ 2016-11-06 22:26 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2016-11-06 22:26 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: dev
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-11-06 22:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-01 17:03 [dpdk-dev] [PATCH] doc: add missing library to release notes Ferruh Yigit
2016-11-01 17:03 ` [dpdk-dev] [PATCH] net: remove mempool as a dependency Ferruh Yigit
2016-11-06 22:26 ` Thomas Monjalon
2016-11-03 12:28 ` [dpdk-dev] [PATCH] doc: add missing library to release notes Mcnamara, John
2016-11-06 22:26 ` Thomas Monjalon
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).