- Don't use the already over-used LWIP_TAG for lookaside list allocations

svn path=/trunk/; revision=70696
This commit is contained in:
Thomas Faber 2016-02-06 22:11:03 +00:00
parent 9a5b681194
commit cab26c80f1
2 changed files with 5 additions and 3 deletions

View file

@ -7,7 +7,9 @@
#include "tcpip.h"
#ifndef LWIP_TAG
#define LWIP_TAG 'PIwl'
#define LWIP_TAG 'PIwl'
#define LWIP_MESSAGE_TAG 'sMwl'
#define LWIP_QUEUE_TAG 'uQwl'
#endif
typedef struct tcp_pcb* PTCP_PCB;

View file

@ -321,7 +321,7 @@ sys_init(void)
NULL,
0,
sizeof(struct lwip_callback_msg),
LWIP_TAG,
LWIP_MESSAGE_TAG,
0);
ExInitializeNPagedLookasideList(&QueueEntryLookasideList,
@ -329,7 +329,7 @@ sys_init(void)
NULL,
0,
sizeof(QUEUE_ENTRY),
LWIP_TAG,
LWIP_QUEUE_TAG,
0);
}