[NDK] Fix the type of KPROCESS::ActiveProcessors

Also fix related logic in KiSwapProcess
This commit is contained in:
Timo Kreuzer 2018-02-10 20:30:14 +01:00
parent 158812409d
commit de1b195837
2 changed files with 4 additions and 6 deletions

View file

@ -278,13 +278,11 @@ KiSwapProcess(IN PKPROCESS NewProcess,
IN PKPROCESS OldProcess) IN PKPROCESS OldProcess)
{ {
PKIPCR Pcr = (PKIPCR)KeGetPcr(); PKIPCR Pcr = (PKIPCR)KeGetPcr();
#ifdef CONFIG_SMP
LONG SetMember;
#ifdef CONFIG_SMP
/* Update active processor mask */ /* Update active processor mask */
SetMember = (LONG)Pcr->SetMember; InterlockedXor64((PLONG64)&NewProcess->ActiveProcessors, Pcr->Prcb.SetMember);
InterlockedXor((PLONG)&NewProcess->ActiveProcessors, SetMember); InterlockedXor64((PLONG64)&OldProcess->ActiveProcessors, Pcr->Prcb.SetMember);
InterlockedXor((PLONG)&OldProcess->ActiveProcessors, SetMember);
#endif #endif
/* Update CR3 */ /* Update CR3 */

View file

@ -1988,7 +1988,7 @@ typedef struct _KPROCESS
UCHAR Iopl; UCHAR Iopl;
UCHAR Unused; UCHAR Unused;
#endif #endif
volatile ULONG ActiveProcessors; volatile KAFFINITY ActiveProcessors;
ULONG KernelTime; ULONG KernelTime;
ULONG UserTime; ULONG UserTime;
LIST_ENTRY ReadyListHead; LIST_ENTRY ReadyListHead;