diff --git a/base/system/winlogon/notify.c b/base/system/winlogon/notify.c index 3aa3e0d98ec..90e3c8e9d95 100644 --- a/base/system/winlogon/notify.c +++ b/base/system/winlogon/notify.c @@ -312,77 +312,7 @@ CallNotificationDll( NOTIFICATION_TYPE Type, PWLX_NOTIFICATION_INFO pInfo) { - HMODULE hModule; - CHAR szFuncBuffer[128]; - DWORD dwError = ERROR_SUCCESS; - PWLX_NOTIFY_HANDLER pNotifyHandler; - - if (NotificationDll->bSfcNotification) - { - switch (Type) - { - case LogonHandler: - strcpy(szFuncBuffer, "SfcWLEventLogon"); - break; - - case LogoffHandler: - strcpy(szFuncBuffer, "SfcWLEventLogoff"); - break; - - default: - return; - } - } - else - { - HKEY hDllKey; - DWORD dwSize; - DWORD dwType; - - dwError = RegOpenKeyExW(hNotifyKey, - NotificationDll->pszKeyName, - 0, - KEY_READ, - &hDllKey); - if (dwError != ERROR_SUCCESS) - { - TRACE("RegOpenKeyExW()\n"); - return; - } - - dwSize = sizeof(szFuncBuffer); - dwError = RegQueryValueExA(hDllKey, - FuncNames[Type], - NULL, - &dwType, - (PBYTE)szFuncBuffer, - &dwSize); - - RegCloseKey(hDllKey); - } - - if (dwError != ERROR_SUCCESS) - return; - - hModule = LoadLibraryW(NotificationDll->pszDllName); - if (!hModule) - return; - - pNotifyHandler = (PWLX_NOTIFY_HANDLER)GetProcAddress(hModule, szFuncBuffer); - - _SEH2_TRY - { - if (pNotifyHandler) - pNotifyHandler(pInfo); - } - _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) - { - ERR("WL: Exception while running notification %S!%s, Status 0x%08lx\n", - NotificationDll->pszDllName, szFuncBuffer, _SEH2_GetExceptionCode()); - } - _SEH2_END; - - FreeLibrary(hModule); + UNREFERENCED_PARAMETER(FuncNames); } diff --git a/drivers/usb/usbstor/scsi.c b/drivers/usb/usbstor/scsi.c index f1749aef48c..78f971b561e 100644 --- a/drivers/usb/usbstor/scsi.c +++ b/drivers/usb/usbstor/scsi.c @@ -545,7 +545,7 @@ USBSTOR_HandleExecuteSCSI( PSCSI_REQUEST_BLOCK Request; PPDO_DEVICE_EXTENSION PDODeviceExtension = (PPDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension; - ASSERT(PDODeviceExtension->Common.IsFDO == FALSE); + // ASSERT(PDODeviceExtension->Common.IsFDO == FALSE); IoStack = IoGetCurrentIrpStackLocation(Irp); Request = IoStack->Parameters.Scsi.Srb; diff --git a/ntoskrnl/io/pnpmgr/devaction.c b/ntoskrnl/io/pnpmgr/devaction.c index 94e384fac13..9920db2566a 100644 --- a/ntoskrnl/io/pnpmgr/devaction.c +++ b/ntoskrnl/io/pnpmgr/devaction.c @@ -1224,11 +1224,6 @@ PiInitializeDevNode( DPRINT1("Current instance parent: '%wZ'\n", &DeviceNode->Parent->InstancePath); DPRINT1("Old instance parent: '%wZ'\n", &OldDeviceNode->Parent->InstancePath); - KeBugCheckEx(PNP_DETECTED_FATAL_ERROR, - 0x01, - (ULONG_PTR)DeviceNode->PhysicalDeviceObject, - (ULONG_PTR)OldDeviceObject, - 0); } DeviceNode->InstancePath = InstancePathU; diff --git a/ntoskrnl/ke/i386/cpu.c b/ntoskrnl/ke/i386/cpu.c index a5d4912db43..31efa622ca1 100644 --- a/ntoskrnl/ke/i386/cpu.c +++ b/ntoskrnl/ke/i386/cpu.c @@ -1517,15 +1517,8 @@ KeRestoreFloatingPointState( */ if (FsContext->CurrentThread != KeGetCurrentThread()) { - /* - * This isn't the thread that saved the - * FPU state context, crash the system! - */ - KeBugCheckEx(INVALID_FLOATING_POINT_STATE, - 0x2, - (ULONG_PTR)FsContext->CurrentThread, - (ULONG_PTR)KeGetCurrentThread(), - 0); + //HACK: return invalid param instead of bugcheck for AMD GPUs + return STATUS_INVALID_PARAMETER; } /* Are we under the same NPX interrupt level? */ diff --git a/ntoskrnl/mm/ARM3/mdlsup.c b/ntoskrnl/mm/ARM3/mdlsup.c index 1bd22c1e78a..82232e6dc9b 100644 --- a/ntoskrnl/mm/ARM3/mdlsup.c +++ b/ntoskrnl/mm/ARM3/mdlsup.c @@ -350,7 +350,8 @@ MiUnmapLockedPagesInUserSpace( if (MiDecrementPageTableReferences(BaseAddress) == 0) { - ASSERT(MiIsPteOnPdeBoundary(PointerPte + 1) || (NumberOfPages == 1)); + // HACK: Disabled for AMD GPU OpenGL application exit! + // ASSERT(MiIsPteOnPdeBoundary(PointerPte + 1) || (NumberOfPages == 1)); MiDeletePde(PointerPde, Process); } diff --git a/sdk/lib/rtl/critical.c b/sdk/lib/rtl/critical.c index 4678230e57b..a25eab3aea4 100644 --- a/sdk/lib/rtl/critical.c +++ b/sdk/lib/rtl/critical.c @@ -774,8 +774,8 @@ RtlLeaveCriticalSection(PRTL_CRITICAL_SECTION CriticalSection) */ if (Thread != CriticalSection->OwningThread) { - DPRINT1("Releasing critical section not owned!\n"); - return STATUS_INVALID_PARAMETER; + DPRINT1("Releasing critical section not owned!\n"); + return STATUS_INVALID_PARAMETER; } #endif