mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 15:36:42 +00:00
Amd64/misc 64bit fixes (#236)
[REACTOS] Misc 64 bit fixes * [NTOS:MM] Allow MEM_DOS_LIM in NtMapViewOfSection on x64 as well * [NTOS:MM] Implement x64 version of MmIsDisabledPage * [HAL] Remove obsolete code * [NTOS:KE] Fix amd64 version of KeContextToTrapFrame and KeTrapFrameToContext * [XDK] Fix CONTEXT_XSTATE definition * [PCNET] Convert physical address types from pointers to PHYSICAL_ADDRESS
This commit is contained in:
parent
5a4693ff6f
commit
a2f7de7ee8
17 changed files with 72 additions and 76 deletions
|
@ -79,27 +79,27 @@ typedef struct _ADAPTER
|
|||
/* initialization block */
|
||||
ULONG InitializationBlockLength;
|
||||
PINITIALIZATION_BLOCK InitializationBlockVirt;
|
||||
PINITIALIZATION_BLOCK InitializationBlockPhys;
|
||||
PHYSICAL_ADDRESS InitializationBlockPhys;
|
||||
|
||||
/* transmit descriptor ring */
|
||||
ULONG TransmitDescriptorRingLength;
|
||||
PTRANSMIT_DESCRIPTOR TransmitDescriptorRingVirt;
|
||||
PTRANSMIT_DESCRIPTOR TransmitDescriptorRingPhys;
|
||||
PHYSICAL_ADDRESS TransmitDescriptorRingPhys;
|
||||
|
||||
/* transmit buffers */
|
||||
ULONG TransmitBufferLength;
|
||||
PCHAR TransmitBufferPtrVirt;
|
||||
PCHAR TransmitBufferPtrPhys;
|
||||
PHYSICAL_ADDRESS TransmitBufferPtrPhys;
|
||||
|
||||
/* receive descriptor ring */
|
||||
ULONG ReceiveDescriptorRingLength;
|
||||
PRECEIVE_DESCRIPTOR ReceiveDescriptorRingVirt;
|
||||
PRECEIVE_DESCRIPTOR ReceiveDescriptorRingPhys;
|
||||
PHYSICAL_ADDRESS ReceiveDescriptorRingPhys;
|
||||
|
||||
/* receive buffers */
|
||||
ULONG ReceiveBufferLength;
|
||||
PCHAR ReceiveBufferPtrVirt;
|
||||
PCHAR ReceiveBufferPtrPhys;
|
||||
PHYSICAL_ADDRESS ReceiveBufferPtrPhys;
|
||||
|
||||
/* buffer count */
|
||||
ULONG BufferCount;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue