Open dapaulid opened 1 year ago
It seems to me that the Windows 11 2021 Update broke compatibility with devices that use automatic synchronization:
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(&attributes, MY_DEVICE); attributes.SynchronizationScope = WdfSynchronizationScopeDevice; status = WdfDeviceCreate( &DeviceInit, &attributes, &device );
This makes a subsequent call to NetAdapterCreate fail with STATUS_WDF_INCOMPATIBLE_EXECUTION_LEVEL (0xc020020c). Before the update (on Windows 10) the driver worked correctly.
NetAdapterCreate
STATUS_WDF_INCOMPATIBLE_EXECUTION_LEVEL (0xc020020c)
Is this expected behavior, or could this be a regression?
It seems to me that the Windows 11 2021 Update broke compatibility with devices that use automatic synchronization:
This makes a subsequent call to
NetAdapterCreate
fail withSTATUS_WDF_INCOMPATIBLE_EXECUTION_LEVEL (0xc020020c)
. Before the update (on Windows 10) the driver worked correctly.Is this expected behavior, or could this be a regression?