/hg/release/icedtea6-1.7: Support systems where the sched_getcpu...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Mon Oct 4 08:58:42 PDT 2010
changeset 02e3bf7ef716 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=02e3bf7ef716
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 04 16:58:32 2010 +0100
Support systems where the sched_getcpu libc call is not present but
the syscall is.
2010-09-17 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am: Add new patch.
* NEWS: Updated.
* patches/numa_on_early_glibc.patch, Fallback to making a
syscall if sched_getcpu exists but the glibc used is too old
to support it.
diffstat:
4 files changed, 71 insertions(+), 14 deletions(-)
ChangeLog | 11 ++++++++
Makefile.am | 3 +-
NEWS | 25 ++++++++++----------
patches/numa_on_early_glibc.patch | 46 +++++++++++++++++++++++++++++++++++++
diffs (120 lines):
diff -r 4c9da74e0a11 -r 02e3bf7ef716 ChangeLog
--- a/ChangeLog Wed Sep 29 13:37:46 2010 -0700
+++ b/ChangeLog Mon Oct 04 16:58:32 2010 +0100
@@ -1,5 +1,14 @@ 2010-09-29 Deepak Bhole <dbhole at redhat.
+2010-09-17 Andrew John Hughes <ahughes at redhat.com>
+
+ * Makefile.am:
+ Add new patch.
+ * NEWS: Updated.
+ * patches/numa_on_early_glibc.patch,
+ Fallback to making a syscall if sched_getcpu
+ exists but the glibc used is too old to support it.
+
2010-09-29 Deepak Bhole <dbhole at redhat.com>
-
+
Fixed PR519 (patch from dnietoc at gmail.com).
* plugin/icedteanp/IcedTeaNPPlugin.cc: Have ITNP_NewStream return
NPERR_GENERIC_ERROR instead of NPERR_NO_ERROR.
diff -r 4c9da74e0a11 -r 02e3bf7ef716 Makefile.am
--- a/Makefile.am Wed Sep 29 13:37:46 2010 -0700
+++ b/Makefile.am Mon Oct 04 16:58:32 2010 +0100
@@ -347,7 +347,8 @@ ICEDTEA_PATCHES = \
patches/fonts-gentoo.patch \
patches/fonts-rhel.patch \
patches/openjdk/6638712-wildcard_types.patch \
- patches/openjdk/6650759-missing_inference.patch
+ patches/openjdk/6650759-missing_inference.patch \
+ patches/numa_on_early_glibc.patch
if WITH_RHINO
ICEDTEA_PATCHES += \
diff -r 4c9da74e0a11 -r 02e3bf7ef716 NEWS
--- a/NEWS Wed Sep 29 13:37:46 2010 -0700
+++ b/NEWS Mon Oct 04 16:58:32 2010 +0100
@@ -1,21 +1,22 @@ New in release 1.7.5 (XXXX-XX-XX):
New in release 1.7.5 (XXXX-XX-XX):
* Fixes
- - G244901: Skip test_gamma on hardened (PaX-enabled) kernels
- - G266295: Provide font configuration for Gentoo.
- - Provide font configuration for RHEL 6.
+ - G244901: Skip test_gamma on hardened (PaX-enabled) kernels
+ - G266295: Provide font configuration for Gentoo.
+ - Provide font configuration for RHEL 6.
+ - RH633510: OpenJDK should use NUMA even if glibc doesn't provide it
* Backports
- - S6539464, RH500077: Ensure java.lang.Math functions provide consistent results.
- - S6951319: enable solaris builds using Sun Studio 12 update 1 (fixes PR398).
- - S6638712: Inference with wildcard types causes selection of inapplicable method
- - S6650759: Inference of formal type parameter (unused in formal parameters) is not performed
+ - S6539464, RH500077: Ensure java.lang.Math functions provide consistent results.
+ - S6951319: enable solaris builds using Sun Studio 12 update 1 (fixes PR398).
+ - S6638712: Inference with wildcard types causes selection of inapplicable method
+ - S6650759: Inference of formal type parameter (unused in formal parameters) is not performed
* NetX
- - Fix browser command in BasicService.showDocument(URL)
- - Run programs that inherit main(String[]) in their main-class
- - Work with JNLP files that use spec version 1.6
- - RH601281: Possible NullPointerException in splash screen code
+ - Fix browser command in BasicService.showDocument(URL)
+ - Run programs that inherit main(String[]) in their main-class
+ - Work with JNLP files that use spec version 1.6
+ - RH601281: Possible NullPointerException in splash screen code
* Plugin
- - RH560193: Fix ziperror when applet jar contained another 0-byte jar
+ - RH560193: Fix ziperror when applet jar contained another 0-byte jar
- PR519: 100% CPU usage when displaying applets in Webkit based browsers
New in release 1.7.4 (2010-07-28):
diff -r 4c9da74e0a11 -r 02e3bf7ef716 patches/numa_on_early_glibc.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/numa_on_early_glibc.patch Mon Oct 04 16:58:32 2010 +0100
@@ -0,0 +1,46 @@
+--- openjdk.orig/hotspot/src/os/linux/vm/os_linux.cpp 2010-09-14 15:30:59.000000000 +0100
++++ openjdk/hotspot/src/os/linux/vm/os_linux.cpp 2010-09-14 17:45:54.000000000 +0100
+@@ -54,6 +54,10 @@
+ # include <sys/shm.h>
+ # include <link.h>
+
++#if __x86_64__
++#include <asm/vsyscall.h>
++#endif
++
+ #define MAX_PATH (2 * K)
+
+ // for timer info max values which include all bits
+@@ -2414,6 +2418,21 @@
+ return end;
+ }
+
++static int sched_getcpu_syscall(void) {
++ unsigned int cpu;
++ int retval = -1;
++
++#if __x86_64__
++ typedef long (*vgetcpu_t)(unsigned int *cpu, unsigned int *node, unsigned long *tcache);
++ vgetcpu_t vgetcpu = (vgetcpu_t)VSYSCALL_ADDR(__NR_vgetcpu);
++ retval = vgetcpu(&cpu, NULL, NULL);
++#elif __i386__
++ retval = syscall(SYS_getcpu, &cpu, NULL, NULL);
++#endif
++
++ return (retval == -1) ? retval : cpu;
++}
++
+ extern "C" void numa_warn(int number, char *where, ...) { }
+ extern "C" void numa_error(char *where) { }
+
+@@ -2422,6 +2441,10 @@
+ set_sched_getcpu(CAST_TO_FN_PTR(sched_getcpu_func_t,
+ dlsym(RTLD_DEFAULT, "sched_getcpu")));
+
++ // If it's not, try a direct syscall.
++ if (sched_getcpu() == -1)
++ set_sched_getcpu(CAST_TO_FN_PTR(sched_getcpu_func_t, (void*)&sched_getcpu_syscall));
++
+ if (sched_getcpu() != -1) { // Does it work?
+ void *handle = dlopen("libnuma.so.1", RTLD_LAZY);
+ if (handle != NULL) {
More information about the distro-pkg-dev
mailing list