diff options
author | Wenlin Kang <wenlin.kang@windriver.com> | 2019-02-18 18:30:57 -0800 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2020-08-17 13:02:40 +0200 |
commit | 4bcf80651fa555611c13c02eaab3529ccf31bbf6 (patch) | |
tree | 0211e7e17f0fe8fc43c0f824f9007ca0703bb856 /recipes-core/openjdk/patches-openjdk-8 | |
parent | 8f6374ef51eb0f4d2e85fbd6b546b9cee0bb954d (diff) | |
download | meta-java-4bcf80651fa555611c13c02eaab3529ccf31bbf6.tar.gz |
openjdk-8: fix a random crash on JNI_CreateJavaVM
When call JNI_CreateJavaVM API, sometimes it will crash(we have
reproduced it on quemuppc), this patch fixes it.
Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com>
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8')
-rw-r--r-- | recipes-core/openjdk/patches-openjdk-8/0001-hotspot-fix-crash-on-JNI_CreateJavaVM.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/0001-hotspot-fix-crash-on-JNI_CreateJavaVM.patch b/recipes-core/openjdk/patches-openjdk-8/0001-hotspot-fix-crash-on-JNI_CreateJavaVM.patch new file mode 100644 index 0000000..4618b6b --- /dev/null +++ b/recipes-core/openjdk/patches-openjdk-8/0001-hotspot-fix-crash-on-JNI_CreateJavaVM.patch | |||
@@ -0,0 +1,36 @@ | |||
1 | From d0ebd6f108df9b0f9533de6f16280ceec136d8e6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Wenlin Kang <wenlin.kang@windriver.com> | ||
3 | Date: Sun, 17 Feb 2019 22:38:33 -0800 | ||
4 | Subject: [PATCH] hotspot: fix crash on JNI_CreateJavaVM | ||
5 | |||
6 | In function os::pd_create_stack_guard_pages(char* addr, size_t size), | ||
7 | when addr < os::Linux::initial_thread_stack_bottom(), usually munmap() | ||
8 | will not be called, but when mincore()==-1, get_stack_commited_bottom() | ||
9 | will make stack_extent < os::Linux::initial_thread_stack_bottom() and | ||
10 | stack_extent < addr too, then munmap() is called, in such case, it may | ||
11 | cause segment(we have reproduced it on linux_PPC). | ||
12 | |||
13 | Upstream-Status: Pending | ||
14 | |||
15 | Signed-off-by: Wenlin Kang <wenlin.kang@windriver.com> | ||
16 | --- | ||
17 | hotspot/src/os/linux/vm/os_linux.cpp | 3 ++- | ||
18 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/hotspot/src/os/linux/vm/os_linux.cpp b/hotspot/src/os/linux/vm/os_linux.cpp | ||
21 | index 044a70a6..b8246ce4 100644 | ||
22 | --- a/hotspot/src/os/linux/vm/os_linux.cpp | ||
23 | +++ b/hotspot/src/os/linux/vm/os_linux.cpp | ||
24 | @@ -3078,7 +3078,8 @@ bool os::pd_create_stack_guard_pages(char* addr, size_t size) { | ||
25 | uintptr_t stack_extent = (uintptr_t) os::Linux::initial_thread_stack_bottom(); | ||
26 | unsigned char vec[1]; | ||
27 | |||
28 | - if (mincore((address)stack_extent, os::vm_page_size(), vec) == -1) { | ||
29 | + if ((mincore((address)stack_extent, os::vm_page_size(), vec) == -1) | ||
30 | + && ((size_t)addr > (size_t)stack_extent)) { | ||
31 | // Fallback to slow path on all errors, including EAGAIN | ||
32 | stack_extent = (uintptr_t) get_stack_commited_bottom( | ||
33 | os::Linux::initial_thread_stack_bottom(), | ||
34 | -- | ||
35 | 2.17.1 | ||
36 | |||