Disable ntdll-Heap_Improvements patchset

This patchset is causing causing an issue with upstream.
Currently disable for release.

https://bugs.winehq.org/show_bug.cgi?id=51777
This commit is contained in:
Alistair Leslie-Hughes 2021-09-25 08:54:06 +10:00
parent 013f32ceeb
commit 7ed2565d7e
2 changed files with 1 additions and 17 deletions

View File

@ -1 +1,2 @@
Fixes: [43224] Improvement for heap allocation performance
Disabled: True

View File

@ -155,7 +155,6 @@ patch_enable_all ()
enable_ntdll_FileFsFullSizeInformation="$1"
enable_ntdll_ForceBottomUpAlloc="$1"
enable_ntdll_HashLinks="$1"
enable_ntdll_Heap_Improvements="$1"
enable_ntdll_Hide_Wine_Exports="$1"
enable_ntdll_Junction_Points="$1"
enable_ntdll_Manifest_Range="$1"
@ -506,9 +505,6 @@ patch_enable ()
ntdll-HashLinks)
enable_ntdll_HashLinks="$2"
;;
ntdll-Heap_Improvements)
enable_ntdll_Heap_Improvements="$2"
;;
ntdll-Hide_Wine_Exports)
enable_ntdll_Hide_Wine_Exports="$2"
;;
@ -2717,19 +2713,6 @@ if test "$enable_ntdll_HashLinks" -eq 1; then
patch_apply ntdll-HashLinks/0002-ntdll-Use-HashLinks-when-searching-for-a-dll-using-t.patch
fi
# Patchset ntdll-Heap_Improvements
# |
# | This patchset fixes the following Wine bugs:
# | * [#43224] Improvement for heap allocation performance
# |
# | Modified files:
# | * dlls/ntdll/heap.c
# |
if test "$enable_ntdll_Heap_Improvements" -eq 1; then
patch_apply ntdll-Heap_Improvements/0001-ntdll-Add-helper-function-to-delete-free-blocks.patch
patch_apply ntdll-Heap_Improvements/0002-ntdll-Improve-heap-allocation-performance.patch
fi
# Patchset ntdll-Hide_Wine_Exports
# |
# | This patchset fixes the following Wine bugs: