Re: [dpdk-dev] [PATCH] bus/pci/windows: guard against sdk/dpdk guid collision

2021-01-13 Thread Tyler Retzlaff
On Wed, Jan 13, 2021 at 08:20:34PM +0300, Dmitry Kozlyuk wrote: > pci/windows: fix build with SDK 10.0.x > > NetUIO device class and interface GUIDs are defined in system > headers starting from platform SDK v10.0.x. Inspect SDK version > to avoid redefinition. > >

Re: [dpdk-dev] [PATCH] bus/pci/windows: guard against sdk/dpdk guid collision

2021-01-13 Thread Dmitry Kozlyuk
On Tue, 12 Jan 2021 14:33:41 -0800, Tyler Retzlaff wrote: > DEVCLASS and DEVINTERFACE guids are defined/managed by the windows > platform sdk headers. Please write names and acronyms in proper case in all human-readable text (commit subject except topic, commit message, log messages). > * hide dp

[dpdk-dev] [PATCH] bus/pci/windows: guard against sdk/dpdk guid collision

2021-01-12 Thread Tyler Retzlaff
DEVCLASS and DEVINTERFACE guids are defined/managed by the windows platform sdk headers. * hide dpdk defined GUID_DEVCLASS_NETUIO and GUID_DEVINTERFACE_NETUIO if the NTDDI_VERSION >= 0x0A0A * include for windows sdk defined GUID_DEVINTERFACE_NETUIO Signed-off-by: Tyler Retzlaff --- drive