Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8024566 | 8 | Dmitriy Samersoff | P2 | Closed | Fixed | b107 |
-------- Original Message --------
Date: Tue, 26 Feb 2013 17:58:45 +0000
From: Andrew Haley <aph@redhat.com>
get_stack_bounds() was rewritten because of a small memory leak.
Instead of simply free()ing the memory to prevent the leak, it was
rewritten to use a byte-by-byte loop around read() :
http://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/2011-February/001864.html
Unfortunately, the performance impact of this change is tragic. As
you can imagine, tens of thousands of system calls are made whenever
get_stack_bounds() is called.
Before rewrite: typically 100 microseconds
After rewrite: typically 1500 microseconds
Date: Tue, 26 Feb 2013 17:58:45 +0000
From: Andrew Haley <aph@redhat.com>
get_stack_bounds() was rewritten because of a small memory leak.
Instead of simply free()ing the memory to prevent the leak, it was
rewritten to use a byte-by-byte loop around read() :
http://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/2011-February/001864.html
Unfortunately, the performance impact of this change is tragic. As
you can imagine, tens of thousands of system calls are made whenever
get_stack_bounds() is called.
Before rewrite: typically 100 microseconds
After rewrite: typically 1500 microseconds
- backported by
-
JDK-8024566 poor performance of JNI AttachCurrentThread after fix for 7017193
-
- Closed
-
- relates to
-
JDK-8024056 runtime/InitialThreadOverflow/testme.sh fails
-
- Resolved
-
-
JDK-7017193 Small memory leak in get_stack_bounds // os::create_stack_guard_pages
-
- Closed
-