mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 02:56:09 +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_IOWI 'IWOI'
|
||||||
#define TAG_IRP ' prI'
|
#define TAG_IRP ' prI'
|
||||||
#define TAG_IOBUF 'UBOI'
|
#define TAG_IOBUF 'UBOI'
|
||||||
#define TAG_KINTERRUPT 'RSIK'
|
#define TAG_IO_INTERRUPT 'nioI'
|
||||||
#define TAG_MDL ' LDM'
|
#define TAG_MDL ' LDM'
|
||||||
#define TAG_IO_DEVNODE 'donD'
|
#define TAG_IO_DEVNODE 'donD'
|
||||||
#define TAG_PNP_NOTIFY 'NPnP'
|
#define TAG_PNP_NOTIFY 'NPnP'
|
||||||
|
|
|
@ -60,7 +60,7 @@ IoConnectInterrupt(OUT PKINTERRUPT *InterruptObject,
|
||||||
IoInterrupt = ExAllocatePoolZero(NonPagedPool,
|
IoInterrupt = ExAllocatePoolZero(NonPagedPool,
|
||||||
(Count - 1) * sizeof(KINTERRUPT) +
|
(Count - 1) * sizeof(KINTERRUPT) +
|
||||||
sizeof(IO_INTERRUPT),
|
sizeof(IO_INTERRUPT),
|
||||||
TAG_KINTERRUPT);
|
TAG_IO_INTERRUPT);
|
||||||
if (!IoInterrupt) return STATUS_INSUFFICIENT_RESOURCES;
|
if (!IoInterrupt) return STATUS_INSUFFICIENT_RESOURCES;
|
||||||
|
|
||||||
/* Use the structure's spinlock, if none was provided */
|
/* Use the structure's spinlock, if none was provided */
|
||||||
|
@ -105,7 +105,7 @@ IoConnectInterrupt(OUT PKINTERRUPT *InterruptObject,
|
||||||
if (FirstRun)
|
if (FirstRun)
|
||||||
{
|
{
|
||||||
/* We failed early so just free this */
|
/* We failed early so just free this */
|
||||||
ExFreePoolWithTag(IoInterrupt, TAG_KINTERRUPT);
|
ExFreePoolWithTag(IoInterrupt, TAG_IO_INTERRUPT);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -166,7 +166,7 @@ IoDisconnectInterrupt(PKINTERRUPT InterruptObject)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Free the I/O interrupt */
|
/* Free the I/O interrupt */
|
||||||
ExFreePoolWithTag(IoInterrupt, TAG_KINTERRUPT);
|
ExFreePoolWithTag(IoInterrupt, TAG_IO_INTERRUPT);
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
Loading…
Reference in a new issue