Joe McDonnell has uploaded this change for review. ( http://gerrit.cloudera.org:8080/23465
Change subject: IMPALA-13472: Bump toolchain to fix minidump stacks on ARM ...................................................................... IMPALA-13472: Bump toolchain to fix minidump stacks on ARM Minidump stack resolution does not work on Redhat8 ARM64. Redhat8 ARM64 uses 64KB pages, and the Breakpad library does not properly handle collecting stacks for that configuration. Breakpad rounds off the stack pointer to the nearest page boundary below the stack pointer, then collects up to 32KB of stack memory. With a top-down stack, this means it is collecting some memory that is not used by the stack. With 64KB pages, the memory it collects usually doesn't contain any stack contents. This picks up a toolchain with Breakpad patched to fix this. The patch stops rounding the stack pointer to the nearest page. Instead, it adjusts the stack pointer to account for the red zone (128 bytes on x86_64) and then rounds to the nearest 1KB boundary below the stack pointer. Testing: - Produced and resolved minidumps on multiple build types for x86_64 and ARM64 (release, debug, asan, ubsan) Change-Id: I4fbd91abfbddfd8355d27ae9d9b86b70a9ce0409 --- M bin/impala-config.sh 1 file changed, 4 insertions(+), 4 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/65/23465/1 -- To view, visit http://gerrit.cloudera.org:8080/23465 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: I4fbd91abfbddfd8355d27ae9d9b86b70a9ce0409 Gerrit-Change-Number: 23465 Gerrit-PatchSet: 1 Gerrit-Owner: Joe McDonnell <[email protected]>
