lib: remove unneeded header includesThese header includes have been flagged by the iwyu_tooland removed.Signed-off-by: Sean Morrissey <[email protected]>
net: rename Ethernet header fieldsDefinition of `rte_ether_addr` structure used a workaround allowing DPDKand Windows SDK headers to be used in the same file, because Windows SDKdefines `s_addr`
net: rename Ethernet header fieldsDefinition of `rte_ether_addr` structure used a workaround allowing DPDKand Windows SDK headers to be used in the same file, because Windows SDKdefines `s_addr` as a macro. Rename `s_addr` to `src_addr` and `d_addr`to `dst_addr` to avoid the conflict and remove the workaround.Deprecation notice:https://mails.dpdk.org/archives/dev/2021-July/215270.htmlSigned-off-by: Dmitry Kozlyuk <[email protected]>
show more ...
version: 21.11-rc0Start a new release cycle with empty release notes.The ABI version becomes 22.0.The map files are updated to the new ABI major number (22).The ABI exceptions are dropped and C
version: 21.11-rc0Start a new release cycle with empty release notes.The ABI version becomes 22.0.The map files are updated to the new ABI major number (22).The ABI exceptions are dropped and CI ABI checks are disabled becausecompatibility is not preserved.Signed-off-by: Thomas Monjalon <[email protected]>Acked-by: Ferruh Yigit <[email protected]>Acked-by: David Marchand <[email protected]>
lib: remove librte_ prefix from directory namesThere is no reason for the DPDK libraries to all have 'librte_' prefix onthe directory names. This prefix makes the directory names longer and alsom
lib: remove librte_ prefix from directory namesThere is no reason for the DPDK libraries to all have 'librte_' prefix onthe directory names. This prefix makes the directory names longer and alsomakes it awkward to add features referring to individual libraries in thebuild - should the lib names be specified with or without the prefix.Therefore, we can just remove the library prefix and use the library'sunique name as the directory name, i.e. 'eal' rather than 'librte_eal'Signed-off-by: Bruce Richardson <[email protected]>