* [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
@ 2015-07-09 8:17 Maciej Gajdzica
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Maciej Gajdzica @ 2015-07-09 8:17 UTC (permalink / raw)
To: dev
Exported symbols for nodrop, fragmentation, reassembly ports
Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
---
lib/librte_port/rte_port_version.map | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/lib/librte_port/rte_port_version.map b/lib/librte_port/rte_port_version.map
index f8abbc1..b7acb3c 100644
--- a/lib/librte_port/rte_port_version.map
+++ b/lib/librte_port/rte_port_version.map
@@ -16,3 +16,14 @@ DPDK_2.0 {
local: *;
};
+
+DPDK_2.1 {
+ global:
+
+ rte_port_ethdev_writer_nodrop_ops;
+ rte_port_ring_reader_ipv6_frag_ops;
+ rte_port_ring_writer_ipv6_ras_ops;
+ rte_port_ring_writer_nodrop_ops;
+
+ local: *;
+} DPDK_2.0;
--
1.7.9.5
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH 2/2] pipeline: added missing symbols to map file
2015-07-09 8:17 [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file Maciej Gajdzica
@ 2015-07-09 8:17 ` Maciej Gajdzica
2015-07-09 9:53 ` Jastrzebski, MichalX K
2015-07-09 11:38 ` Dumitrescu, Cristian
2015-07-09 9:53 ` [dpdk-dev] [PATCH 1/2] port: " Jastrzebski, MichalX K
2015-07-09 11:37 ` Dumitrescu, Cristian
2 siblings, 2 replies; 7+ messages in thread
From: Maciej Gajdzica @ 2015-07-09 8:17 UTC (permalink / raw)
To: dev
Exported symbols for port in, port out and table stats.
Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
---
lib/librte_pipeline/rte_pipeline_version.map | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/lib/librte_pipeline/rte_pipeline_version.map b/lib/librte_pipeline/rte_pipeline_version.map
index e9b5bd6..2b43542 100644
--- a/lib/librte_pipeline/rte_pipeline_version.map
+++ b/lib/librte_pipeline/rte_pipeline_version.map
@@ -20,3 +20,13 @@ DPDK_2.0 {
local: *;
};
+
+DPDK_2.1 {
+ global:
+
+ rte_pipeline_table_stats_read;
+ rte_pipeline_port_in_stats_read;
+ rte_pipeline_port_out_stats_read;
+
+ local: *;
+} DPDK_2.0;
--
1.7.9.5
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
2015-07-09 8:17 [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file Maciej Gajdzica
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
@ 2015-07-09 9:53 ` Jastrzebski, MichalX K
2015-07-09 11:37 ` Dumitrescu, Cristian
2 siblings, 0 replies; 7+ messages in thread
From: Jastrzebski, MichalX K @ 2015-07-09 9:53 UTC (permalink / raw)
To: Gajdzica, MaciejX T, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Maciej Gajdzica
> Sent: Thursday, July 09, 2015 10:17 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
>
> Exported symbols for nodrop, fragmentation, reassembly ports
>
> Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
> ---
> lib/librte_port/rte_port_version.map | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/lib/librte_port/rte_port_version.map
> b/lib/librte_port/rte_port_version.map
> index f8abbc1..b7acb3c 100644
> --- a/lib/librte_port/rte_port_version.map
> +++ b/lib/librte_port/rte_port_version.map
> @@ -16,3 +16,14 @@ DPDK_2.0 {
>
> local: *;
> };
> +
> +DPDK_2.1 {
> + global:
> +
> + rte_port_ethdev_writer_nodrop_ops;
> + rte_port_ring_reader_ipv6_frag_ops;
> + rte_port_ring_writer_ipv6_ras_ops;
> + rte_port_ring_writer_nodrop_ops;
> +
> + local: *;
> +} DPDK_2.0;
> --
> 1.7.9.5
Acked-by: Michal Jastrzebski <michalx.k.jastrzebski@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 2/2] pipeline: added missing symbols to map file
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
@ 2015-07-09 9:53 ` Jastrzebski, MichalX K
2015-07-09 11:38 ` Dumitrescu, Cristian
1 sibling, 0 replies; 7+ messages in thread
From: Jastrzebski, MichalX K @ 2015-07-09 9:53 UTC (permalink / raw)
To: Gajdzica, MaciejX T, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Maciej Gajdzica
> Sent: Thursday, July 09, 2015 10:17 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 2/2] pipeline: added missing symbols to map file
>
> Exported symbols for port in, port out and table stats.
>
> Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
> ---
> lib/librte_pipeline/rte_pipeline_version.map | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/lib/librte_pipeline/rte_pipeline_version.map
> b/lib/librte_pipeline/rte_pipeline_version.map
> index e9b5bd6..2b43542 100644
> --- a/lib/librte_pipeline/rte_pipeline_version.map
> +++ b/lib/librte_pipeline/rte_pipeline_version.map
> @@ -20,3 +20,13 @@ DPDK_2.0 {
>
> local: *;
> };
> +
> +DPDK_2.1 {
> + global:
> +
> + rte_pipeline_table_stats_read;
> + rte_pipeline_port_in_stats_read;
> + rte_pipeline_port_out_stats_read;
> +
> + local: *;
> +} DPDK_2.0;
> --
> 1.7.9.5
Acked-by: Michal Jastrzebski <michalx.k.jastrzebski@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
2015-07-09 8:17 [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file Maciej Gajdzica
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
2015-07-09 9:53 ` [dpdk-dev] [PATCH 1/2] port: " Jastrzebski, MichalX K
@ 2015-07-09 11:37 ` Dumitrescu, Cristian
2015-07-09 15:26 ` Thomas Monjalon
2 siblings, 1 reply; 7+ messages in thread
From: Dumitrescu, Cristian @ 2015-07-09 11:37 UTC (permalink / raw)
To: Gajdzica, MaciejX T, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Maciej Gajdzica
> Sent: Thursday, July 9, 2015 11:17 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
>
> Exported symbols for nodrop, fragmentation, reassembly ports
>
> Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
> ---
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 2/2] pipeline: added missing symbols to map file
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
2015-07-09 9:53 ` Jastrzebski, MichalX K
@ 2015-07-09 11:38 ` Dumitrescu, Cristian
1 sibling, 0 replies; 7+ messages in thread
From: Dumitrescu, Cristian @ 2015-07-09 11:38 UTC (permalink / raw)
To: Gajdzica, MaciejX T, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Maciej Gajdzica
> Sent: Thursday, July 9, 2015 11:17 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 2/2] pipeline: added missing symbols to map file
>
> Exported symbols for port in, port out and table stats.
>
> Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
> ---
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file
2015-07-09 11:37 ` Dumitrescu, Cristian
@ 2015-07-09 15:26 ` Thomas Monjalon
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2015-07-09 15:26 UTC (permalink / raw)
To: Gajdzica, MaciejX T; +Cc: dev
> > Exported symbols for nodrop, fragmentation, reassembly ports
> >
> > Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
>
> Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Series applied, thanks
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-07-09 15:27 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-09 8:17 [dpdk-dev] [PATCH 1/2] port: added missing symbols to map file Maciej Gajdzica
2015-07-09 8:17 ` [dpdk-dev] [PATCH 2/2] pipeline: " Maciej Gajdzica
2015-07-09 9:53 ` Jastrzebski, MichalX K
2015-07-09 11:38 ` Dumitrescu, Cristian
2015-07-09 9:53 ` [dpdk-dev] [PATCH 1/2] port: " Jastrzebski, MichalX K
2015-07-09 11:37 ` Dumitrescu, Cristian
2015-07-09 15: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).