]> git.droids-corp.org - dpdk.git/commitdiff
ethdev: rename library for consistency
authorThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 6 Nov 2016 18:18:23 +0000 (19:18 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 6 Nov 2016 19:53:23 +0000 (20:53 +0100)
The library was named libethdev without rte_ prefix.
It is now fixed, the library namespace is consistent.

Note: the ABI version has already been changed in this release cycle.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
doc/guides/rel_notes/deprecation.rst
doc/guides/rel_notes/release_16_11.rst
lib/librte_ether/Makefile
mk/rte.app.mk
mk/rte.lib.mk

index 884a23185fbb636f15d3766cf616901deb37003a..9f5fa55ec1120b70b539f3eba516ff3fecc900ce 100644 (file)
@@ -8,9 +8,6 @@ API and ABI deprecation notices are to be posted here.
 Deprecation Notices
 -------------------
 
-* The ethdev library file will be renamed from libethdev.* to librte_ethdev.*
-  in release 16.11 in order to have a more consistent namespace.
-
 * In 16.11 ABI changes are planned: the ``rte_eth_dev`` structure will be
   extended with new function pointer ``tx_pkt_prep`` allowing verification
   and processing of packet burst to meet HW specific requirements before
index db205674846495475609a68fef4e170b4f1a10f8..aad21ba9cff3e74ced406dbfbb0c6caffef07ca9 100644 (file)
@@ -258,13 +258,13 @@ The libraries prepended with a plus sign were incremented in this version.
 
 .. code-block:: diff
 
-   + libethdev.so.5
      librte_acl.so.2
      librte_cfgfile.so.2
      librte_cmdline.so.2
    + librte_cryptodev.so.2
      librte_distributor.so.1
    + librte_eal.so.3
+   + librte_ethdev.so.5
      librte_hash.so.2
      librte_ip_frag.so.1
      librte_jobstats.so.1
index bc2e5f6518203d3445f37a71fabb72126d33d6df..efe1e5fea6c6d7fddbe3bc15d884612292f135a3 100644 (file)
@@ -34,7 +34,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 #
 # library name
 #
-LIB = libethdev.a
+LIB = librte_ethdev.a
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
index 51bc3b067fa705d523d94a5b6ef803b1a90ecf00..f75f0e24d026fcb807a5da9a1c79de89ffe8d955 100644 (file)
@@ -91,7 +91,7 @@ _LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)          += -lrte_vhost
 _LDLIBS-$(CONFIG_RTE_LIBRTE_KVARGS)         += -lrte_kvargs
 _LDLIBS-$(CONFIG_RTE_LIBRTE_MBUF)           += -lrte_mbuf
 _LDLIBS-$(CONFIG_RTE_LIBRTE_NET)            += -lrte_net
-_LDLIBS-$(CONFIG_RTE_LIBRTE_ETHER)          += -lethdev
+_LDLIBS-$(CONFIG_RTE_LIBRTE_ETHER)          += -lrte_ethdev
 _LDLIBS-$(CONFIG_RTE_LIBRTE_CRYPTODEV)      += -lrte_cryptodev
 _LDLIBS-$(CONFIG_RTE_LIBRTE_MEMPOOL)        += -lrte_mempool
 _LDLIBS-$(CONFIG_RTE_LIBRTE_RING)           += -lrte_ring
index 7b96fd41fdab5259a789d0b7ca447952519aa5d1..33a5f5a120c9293cb6226dc5753dea9af7fa2e3e 100644 (file)
@@ -81,7 +81,7 @@ endif
 # Ignore (sub)directory dependencies which do not provide an actual library
 _IGNORE_DIRS = lib/librte_eal/% lib/librte_compat
 _DEPDIRS = $(filter-out $(_IGNORE_DIRS),$(DEPDIRS-y))
-_LDDIRS = $(subst librte_ether,libethdev,$(_DEPDIRS))
+_LDDIRS = $(subst librte_ether,librte_ethdev,$(_DEPDIRS))
 LDLIBS += $(subst lib/lib,-l,$(_LDDIRS))
 
 O_TO_A = $(AR) crDs $(LIB) $(OBJS-y)