From: Dmitry Kozlyuk Date: Fri, 1 Oct 2021 16:37:25 +0000 (+0300) Subject: eal/windows: do not install virt2phys header X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d47dd941623c12bebd8a283ec440ac92faf235c0;p=dpdk.git eal/windows: do not install virt2phys header The header was not intended to be a public one. DPDK users should use `rte_mem_virt2iova()` to translate addresses. Other virt2phys users should use the header from the driver instead. Fixes: 2a5d547a4a9b ("eal/windows: implement basic memory management") Cc: stable@dpdk.org Signed-off-by: Dmitry Kozlyuk --- diff --git a/lib/eal/windows/include/meson.build b/lib/eal/windows/include/meson.build index b3534b025f..5fb1962ac7 100644 --- a/lib/eal/windows/include/meson.build +++ b/lib/eal/windows/include/meson.build @@ -5,6 +5,5 @@ includes += include_directories('.') headers += files( 'rte_os.h', - 'rte_virt2phys.h', 'rte_windows.h', )