aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/pktio/io_ops.c
diff options
context:
space:
mode:
authorJere Leppänen <jere.leppanen@nokia.com>2021-02-22 21:54:31 +0200
committerPetri Savolainen <petri.savolainen@nokia.com>2021-02-26 15:09:58 +0200
commit706e1e6b24a40bfd9c2b07f084af47532bc2141f (patch)
tree29e51bc1e773a918dcd5f1951ed66116e046a690 /platform/linux-generic/pktio/io_ops.c
parent07e583bcbd09ba4852193e6732136148fef1022b (diff)
linux-gen: rename remaining global symbols in the static library
Rename the rest of the global symbols in the static library that do not have the "_odp_" prefix. Fixes: https://github.com/OpenDataPlane/odp/issues/805 Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'platform/linux-generic/pktio/io_ops.c')
-rw-r--r--platform/linux-generic/pktio/io_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/linux-generic/pktio/io_ops.c b/platform/linux-generic/pktio/io_ops.c
index cd85164e6..b5a08b58a 100644
--- a/platform/linux-generic/pktio/io_ops.c
+++ b/platform/linux-generic/pktio/io_ops.c
@@ -11,13 +11,13 @@
* Order matters. The first implementation to setup successfully
* will be picked.
* Array must be NULL terminated */
-const pktio_if_ops_t * const pktio_if_ops[] = {
+const pktio_if_ops_t * const _odp_pktio_if_ops[] = {
&_odp_loopback_pktio_ops,
#ifdef _ODP_PKTIO_DPDK
- &dpdk_pktio_ops,
+ &_odp_dpdk_pktio_ops,
#endif
#ifdef _ODP_PKTIO_NETMAP
- &netmap_pktio_ops,
+ &_odp_netmap_pktio_ops,
#endif
#ifdef _ODP_PKTIO_PCAP
&_odp_pcap_pktio_ops,