mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
[NTOS:IO] TAG_KINTERRUPT -> TAG_IO_INTERRUPT and change its value.
Change its value, as per the official Windows pooltag.txt file.
This commit is contained in:
parent
02cff5abc1
commit
7a05b393c5
2 changed files with 4 additions and 4 deletions
|
@ -84,7 +84,7 @@
|
|||
#define TAG_IOWI 'IWOI'
|
||||
#define TAG_IRP ' prI'
|
||||
#define TAG_IOBUF 'UBOI'
|
||||
#define TAG_KINTERRUPT 'RSIK'
|
||||
#define TAG_IO_INTERRUPT 'nioI'
|
||||
#define TAG_MDL ' LDM'
|
||||
#define TAG_IO_DEVNODE 'donD'
|
||||
#define TAG_PNP_NOTIFY 'NPnP'
|
||||
|
|
|
@ -60,7 +60,7 @@ IoConnectInterrupt(OUT PKINTERRUPT *InterruptObject,
|
|||
IoInterrupt = ExAllocatePoolZero(NonPagedPool,
|
||||
(Count - 1) * sizeof(KINTERRUPT) +
|
||||
sizeof(IO_INTERRUPT),
|
||||
TAG_KINTERRUPT);
|
||||
TAG_IO_INTERRUPT);
|
||||
if (!IoInterrupt) return STATUS_INSUFFICIENT_RESOURCES;
|
||||
|
||||
/* Use the structure's spinlock, if none was provided */
|
||||
|
@ -105,7 +105,7 @@ IoConnectInterrupt(OUT PKINTERRUPT *InterruptObject,
|
|||
if (FirstRun)
|
||||
{
|
||||
/* We failed early so just free this */
|
||||
ExFreePoolWithTag(IoInterrupt, TAG_KINTERRUPT);
|
||||
ExFreePoolWithTag(IoInterrupt, TAG_IO_INTERRUPT);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -166,7 +166,7 @@ IoDisconnectInterrupt(PKINTERRUPT InterruptObject)
|
|||
}
|
||||
|
||||
/* Free the I/O interrupt */
|
||||
ExFreePoolWithTag(IoInterrupt, TAG_KINTERRUPT);
|
||||
ExFreePoolWithTag(IoInterrupt, TAG_IO_INTERRUPT);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue