ethdev: separate internal structures into own header
authorFerruh Yigit <ferruh.yigit@intel.com>
Mon, 22 Jan 2018 00:16:23 +0000 (00:16 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 22 Jan 2018 00:34:23 +0000 (01:34 +0100)
commit331c447ad913c51817f7192bcc3504d061a04053
tree89ab5f35108008291853b53eacba8daec37c1cb4
parentffc905f3b856b96c6d8d864dba4052104fae4064
ethdev: separate internal structures into own header

rte_ethdev_core.h created. Internal data structures are moved here.

These structures are mostly intended to be used by drivers, but they
need to be in the public header file because of the inline functions
in the ethdev.h header, and those inline functions are preferred to
kept because of the performance concerns.

The accessibility of the data structures are not changed, only logically
grouped to show that they are not intended to be used by applications.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
lib/librte_ether/Makefile
lib/librte_ether/rte_ethdev.h
lib/librte_ether/rte_ethdev_core.h [new file with mode: 0644]