[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:
Hermès Bélusca-Maïto 2025-01-05 21:12:50 +01:00
parent 02cff5abc1
commit 7a05b393c5
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 4 additions and 4 deletions

View file

@ -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'

View file

@ -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