Skip to content

Commit

Permalink
Change the value of MaximumDepth of lookaside list to 1024 to improve…
Browse files Browse the repository at this point in the history
… performance
  • Loading branch information
vgmahajanshetty committed Jan 29, 2025
1 parent 71ae53b commit d2582ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/inc/quic_platform_winkernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ typedef LOOKASIDE_LIST_EX CXPLAT_POOL;
0, \
Size, \
Tag, \
0)
1024)

#define CxPlatPoolUninitialize(Pool) ExDeleteLookasideListEx(Pool)
#define CxPlatPoolAlloc(Pool) ExAllocateFromLookasideListEx(Pool)
Expand Down
2 changes: 1 addition & 1 deletion src/platform/datapath_winkernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ CxPlatSendBufferPoolAlloc(
0, \
Size, \
Tag, \
0)
1024)

IO_COMPLETION_ROUTINE CxPlatDataPathIoCompletion;

Expand Down

0 comments on commit d2582ef

Please sign in to comment.