Thu, 15 Apr 2010 19:08:48 -0700 Merge
trims [Thu, 15 Apr 2010 19:08:48 -0700] rev 5256
Merge
Tue, 13 Apr 2010 13:01:37 -0700 Merge
jrose [Tue, 13 Apr 2010 13:01:37 -0700] rev 5255
Merge
Thu, 08 Apr 2010 17:45:20 -0700 Merge
jrose [Thu, 08 Apr 2010 17:45:20 -0700] rev 5254
Merge
Thu, 08 Apr 2010 12:13:07 -0700 6942223: c1 64 bit fixes
iveresov [Thu, 08 Apr 2010 12:13:07 -0700] rev 5253
6942223: c1 64 bit fixes Summary: This fixes lir_cmp_l2i on x64 and sparc 64bit, and the debug info generation. Reviewed-by: never
Thu, 08 Apr 2010 10:55:40 +0200 6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag
twisti [Thu, 08 Apr 2010 10:55:40 +0200] rev 5252
6941529: SharedRuntime::raw_exception_handler_for_return_address must reset thread MethodHandle flag Summary: During testing a bug was hit when an exception returned to the interpreter and the SP was wrong. Reviewed-by: kvn, never
Wed, 07 Apr 2010 12:39:27 -0700 6940726: Use BIS instruction for allocation prefetch on Sparc
kvn [Wed, 07 Apr 2010 12:39:27 -0700] rev 5251
6940726: Use BIS instruction for allocation prefetch on Sparc Summary: Use BIS instruction for allocation prefetch on Sparc Reviewed-by: twisti
Wed, 07 Apr 2010 10:35:56 -0700 6940733: allocate non static oop fields in super and sub classes together
kvn [Wed, 07 Apr 2010 10:35:56 -0700] rev 5250
6940733: allocate non static oop fields in super and sub classes together Summary: Use FieldsAllocationStyle=2 to allocate non static oop fields in super and sub classes together Reviewed-by: twisti
Wed, 07 Apr 2010 09:37:47 -0700 6940701: Don't align loops in stubs for Niagara sparc
kvn [Wed, 07 Apr 2010 09:37:47 -0700] rev 5249
6940701: Don't align loops in stubs for Niagara sparc Summary: Don't align loops in stubs for Niagara sparc since NOPs are expensive. Reviewed-by: twisti, never
Tue, 06 Apr 2010 15:18:10 -0700 6940677: Use 64 bytes chunk copy for arraycopy on Sparc
kvn [Tue, 06 Apr 2010 15:18:10 -0700] rev 5248
6940677: Use 64 bytes chunk copy for arraycopy on Sparc Summary: For large arrays we should use 64 bytes chunks copy. Reviewed-by: twisti
Tue, 06 Apr 2010 13:39:52 +0200 6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations
twisti [Tue, 06 Apr 2010 13:39:52 +0200] rev 5247
6940520: CodeCache::scavenge_root_nmethods_do must fix oop relocations Summary: ScavengeRootsInCode can lead to unfixed code-embedded oops. Reviewed-by: kvn, never
Fri, 09 Apr 2010 15:01:49 -0700 Merge
tonyp [Fri, 09 Apr 2010 15:01:49 -0700] rev 5246
Merge
Fri, 09 Apr 2010 13:08:34 -0400 Merge
tonyp [Fri, 09 Apr 2010 13:08:34 -0400] rev 5245
Merge
Wed, 07 Apr 2010 11:43:53 -0700 6940894: G1: assert(new_obj != 0 || ... "should be forwarded") for compaction tests
johnc [Wed, 07 Apr 2010 11:43:53 -0700] rev 5244
6940894: G1: assert(new_obj != 0 || ... "should be forwarded") for compaction tests Summary: Humongous regions may contain multiple objects as a result of being retained as to-space from a previous GC and then re-used as to-space after being tagged as humongous. These changes include a check that causes retained to-space regions that are now tagged as humongous to be disregarded and a new to-space region allocated. Reviewed-by: tonyp, iveresov
Tue, 06 Apr 2010 10:59:45 -0400 6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.")
tonyp [Tue, 06 Apr 2010 10:59:45 -0400] rev 5243
6909756: G1: guarantee(G1CollectedHeap::heap()->mark_in_progress(),"Precondition.") Summary: Make sure that two marking cycles do not overlap, i.e., a new one can only start after the concurrent marking thread finishes all its work. In the fix I piggy-back a couple of minor extra fixes: some general code reformatting for consistency (only around the code I modified), the removal of a field (G1CollectorPolicy::_should_initiate_conc_mark) which doesn't seem to be used at all (it's only set but never read), as well as moving the "is GC locker active" test earlier into the G1 pause / Full GC and using a more appropriate method for it. Reviewed-by: johnc, jmasa, jcoomes, ysr
Mon, 05 Apr 2010 12:19:22 -0400 6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
tonyp [Mon, 05 Apr 2010 12:19:22 -0400] rev 5242
6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop() Summary: Calling the methods region_stack_push() and region_stack_pop() concurrent is not MT-safe. The assumption is that we will only call region_stack_push() during a GC pause and region_stack_pop() during marking. Unfortunately, we also call region_stack_push() during marking which seems to be introducing subtle marking failures. This change introduces lock-based methods for pushing / popping to be called during marking. Reviewed-by: iveresov, johnc
Fri, 02 Apr 2010 12:10:08 -0400 6677708: G1: re-enable parallel RSet updating and scanning
tonyp [Fri, 02 Apr 2010 12:10:08 -0400] rev 5241
6677708: G1: re-enable parallel RSet updating and scanning Summary: Enable parallel RSet updating and scanning. Reviewed-by: iveresov, jmasa
Tue, 30 Mar 2010 15:36:55 -0400 6937160: G1: should observe GCTimeRatio
tonyp [Tue, 30 Mar 2010 15:36:55 -0400] rev 5240
6937160: G1: should observe GCTimeRatio Summary: Remove the G1GCPercent parameter, that specifies the desired GC overhead percentage in G1, and observe the GCTimeRatio parameter instead. Reviewed-by: jmasa, johnc
Wed, 07 Apr 2010 12:28:22 -0400 Merge
kamg [Wed, 07 Apr 2010 12:28:22 -0400] rev 5239
Merge
Fri, 02 Apr 2010 17:04:09 -0700 Merge
jcoomes [Fri, 02 Apr 2010 17:04:09 -0700] rev 5238
Merge
Wed, 31 Mar 2010 16:51:18 -0700 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp [Wed, 31 Mar 2010 16:51:18 -0700] rev 5237
6938627: Make temporary directory use property java.io.tmpdir when specified Summary: Get java.io.tmpdir property in os::get_temp_directory() and call this instead of harcoding "/tmp". Don't assume trailing file_separator either. Reviewed-by: dholmes, kamg
Tue, 06 Apr 2010 22:06:57 -0700 Merge
asaha [Tue, 06 Apr 2010 22:06:57 -0700] rev 5236
Merge
Fri, 02 Apr 2010 15:55:04 -0700 Merge
kvn [Fri, 02 Apr 2010 15:55:04 -0700] rev 5235
Merge
Fri, 02 Apr 2010 11:55:00 -0700 6939804: ciConstant::print() prints incorrect bool value
kvn [Fri, 02 Apr 2010 11:55:00 -0700] rev 5234
6939804: ciConstant::print() prints incorrect bool value Summary: Fix typo. Reviewed-by: never
Thu, 01 Apr 2010 16:06:57 -0700 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never [Thu, 01 Apr 2010 16:06:57 -0700] rev 5233
6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly Reviewed-by: kvn
Wed, 31 Mar 2010 16:29:10 -0700 Merge
never [Wed, 31 Mar 2010 16:29:10 -0700] rev 5232
Merge
Wed, 31 Mar 2010 11:54:03 -0700 6939845: zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
never [Wed, 31 Mar 2010 11:54:03 -0700] rev 5231
6939845: zero needs fallback path in C++ interpreter for platform dependent fast bytecodes Reviewed-by: never Contributed-by: ed@camswl.com
Wed, 31 Mar 2010 08:03:33 -0700 6939731: JSR 292 Zero build fix after 6934494
twisti [Wed, 31 Mar 2010 08:03:33 -0700] rev 5230
6939731: JSR 292 Zero build fix after 6934494 Summary: The changes of 6934494 have broken the Zero build. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
Tue, 30 Mar 2010 00:57:55 -0700 6939180: Zero locking fix
twisti [Tue, 30 Mar 2010 00:57:55 -0700] rev 5229
6939180: Zero locking fix Summary: When Zero is running with Shark enabled threads can be left with their _do_not_unlock_if_synchronized flag incorrectly set. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
Thu, 18 Mar 2010 14:31:41 -0700 6926979: should simplify catch_inline_exception
never [Thu, 18 Mar 2010 14:31:41 -0700] rev 5228
6926979: should simplify catch_inline_exception Reviewed-by: twisti
Thu, 15 Apr 2010 19:08:18 -0700 6944398: Bump the HS18 build number to 03
trims [Thu, 15 Apr 2010 19:08:18 -0700] rev 5227
6944398: Bump the HS18 build number to 03 Summary: Update the HS18 build number to 03 Reviewed-by: jcoomes
Thu, 15 Apr 2010 13:54:54 -0700 Added tag jdk7-b89 for changeset 750e57985f1e
mikejwre [Thu, 15 Apr 2010 13:54:54 -0700] rev 5226
Added tag jdk7-b89 for changeset 750e57985f1e
Thu, 15 Apr 2010 13:54:49 -0700 Added tag jdk7-b89 for changeset e996369c787b
mikejwre [Thu, 15 Apr 2010 13:54:49 -0700] rev 5225
Added tag jdk7-b89 for changeset e996369c787b
Wed, 05 Jul 2017 17:09:51 +0200 Added tag jdk7-b89 for changeset 44158f6d3b94
duke [Wed, 05 Jul 2017 17:09:51 +0200] rev 5224
Added tag jdk7-b89 for changeset 44158f6d3b94
Wed, 05 Jul 2017 17:09:51 +0200 Merge jdk7-b89
duke [Wed, 05 Jul 2017 17:09:51 +0200] rev 5223
Merge
Wed, 05 Jul 2017 17:09:49 +0200 Merge
duke [Wed, 05 Jul 2017 17:09:49 +0200] rev 5222
Merge
Tue, 13 Apr 2010 16:42:58 -0700 Merge
lana [Tue, 13 Apr 2010 16:42:58 -0700] rev 5221
Merge
Thu, 08 Apr 2010 15:35:47 -0700 Merge
lana [Thu, 08 Apr 2010 15:35:47 -0700] rev 5220
Merge
Fri, 26 Mar 2010 22:37:04 -0700 6938326: Use of "ant -diagnostics" a problem with ant 1.8.0, exit code 1 now
ohair [Fri, 26 Mar 2010 22:37:04 -0700] rev 5219
6938326: Use of "ant -diagnostics" a problem with ant 1.8.0, exit code 1 now Reviewed-by: jjg
Wed, 24 Mar 2010 17:02:35 -0700 6937417: javac -Xprint returns IndexOutOfBoundsException
darcy [Wed, 24 Mar 2010 17:02:35 -0700] rev 5218
6937417: javac -Xprint returns IndexOutOfBoundsException Reviewed-by: jjg
Wed, 24 Mar 2010 12:18:17 -0700 6937318: jdk7 b86: javah and javah -help is no output for these commands
jjg [Wed, 24 Mar 2010 12:18:17 -0700] rev 5217
6937318: jdk7 b86: javah and javah -help is no output for these commands Reviewed-by: darcy
Tue, 23 Mar 2010 18:05:54 -0700 6937244: sqe ws7 tools javap/javap_t10a fail jdk7 b80 used output of javap is changed
jjg [Tue, 23 Mar 2010 18:05:54 -0700] rev 5216
6937244: sqe ws7 tools javap/javap_t10a fail jdk7 b80 used output of javap is changed Reviewed-by: darcy
Thu, 18 Mar 2010 18:52:44 -0700 Merge
lana [Thu, 18 Mar 2010 18:52:44 -0700] rev 5215
Merge
Fri, 12 Mar 2010 12:00:42 -0800 6934224: update langtools/test/Makefile
jjg [Fri, 12 Mar 2010 12:00:42 -0800] rev 5214
6934224: update langtools/test/Makefile Reviewed-by: ohair
Wed, 10 Mar 2010 16:23:18 -0800 6933914: fix missing newlines
jjg [Wed, 10 Mar 2010 16:23:18 -0800] rev 5213
6933914: fix missing newlines Reviewed-by: ohair
Thu, 08 Apr 2010 17:03:01 -0700 Added tag jdk7-b88 for changeset 27beb127f317
mikejwre [Thu, 08 Apr 2010 17:03:01 -0700] rev 5212
Added tag jdk7-b88 for changeset 27beb127f317
Wed, 05 Jul 2017 17:09:45 +0200 Merge
duke [Wed, 05 Jul 2017 17:09:45 +0200] rev 5211
Merge
Thu, 08 Apr 2010 17:02:46 -0700 Added tag jdk7-b88 for changeset 349fc36a6694
mikejwre [Thu, 08 Apr 2010 17:02:46 -0700] rev 5210
Added tag jdk7-b88 for changeset 349fc36a6694
Wed, 05 Jul 2017 17:09:43 +0200 Merge
duke [Wed, 05 Jul 2017 17:09:43 +0200] rev 5209
Merge
Thu, 08 Apr 2010 17:02:45 -0700 Added tag jdk7-b88 for changeset d929b243d1f3
mikejwre [Thu, 08 Apr 2010 17:02:45 -0700] rev 5208
Added tag jdk7-b88 for changeset d929b243d1f3
Wed, 05 Jul 2017 17:09:41 +0200 Merge
duke [Wed, 05 Jul 2017 17:09:41 +0200] rev 5207
Merge
Thu, 08 Apr 2010 17:02:38 -0700 Added tag jdk7-b88 for changeset ad4ae3f4ca67
mikejwre [Thu, 08 Apr 2010 17:02:38 -0700] rev 5206
Added tag jdk7-b88 for changeset ad4ae3f4ca67
Wed, 05 Jul 2017 17:09:39 +0200 Merge
duke [Wed, 05 Jul 2017 17:09:39 +0200] rev 5205
Merge
Tue, 13 Apr 2010 16:41:49 -0700 Merge
lana [Tue, 13 Apr 2010 16:41:49 -0700] rev 5204
Merge
Thu, 08 Apr 2010 15:34:29 -0700 Merge
lana [Thu, 08 Apr 2010 15:34:29 -0700] rev 5203
Merge
Wed, 07 Apr 2010 12:30:49 -0700 6941130: Semaphore should throw if number of permits overflows or underflows
martin [Wed, 07 Apr 2010 12:30:49 -0700] rev 5202
6941130: Semaphore should throw if number of permits overflows or underflows Summary: Check if release could make number of permits negative Reviewed-by: dl, dholmes
Tue, 06 Apr 2010 15:45:21 -0700 6717164: FilterInputStream.skip incorrectly inherits wording specifying how the InputStream.skip works
sherman [Tue, 06 Apr 2010 15:45:21 -0700] rev 5201
6717164: FilterInputStream.skip incorrectly inherits wording specifying how the InputStream.skip works Summary: restoring the javadoc Reviewed-by: alanb
Tue, 06 Apr 2010 15:44:17 +0100 6921111: NullPointerException in PlainDatagramSocketImpl.socketSetOption
chegar [Tue, 06 Apr 2010 15:44:17 +0100] rev 5200
6921111: NullPointerException in PlainDatagramSocketImpl.socketSetOption Reviewed-by: alanb
Tue, 06 Apr 2010 13:47:59 +0100 6648001: Cancelling HTTP authentication causes subsequent deadlocks
chegar [Tue, 06 Apr 2010 13:47:59 +0100] rev 5199
6648001: Cancelling HTTP authentication causes subsequent deadlocks Reviewed-by: michaelm
Mon, 05 Apr 2010 16:11:59 -0700 Merge
asaha [Mon, 05 Apr 2010 16:11:59 -0700] rev 5198
Merge
Mon, 29 Mar 2010 07:17:02 -0700 Merge
asaha [Mon, 29 Mar 2010 07:17:02 -0700] rev 5197
Merge
Thu, 25 Mar 2010 07:12:43 -0700 Merge
asaha [Thu, 25 Mar 2010 07:12:43 -0700] rev 5196
Merge
Wed, 24 Mar 2010 17:32:04 -0700 Merge
asaha [Wed, 24 Mar 2010 17:32:04 -0700] rev 5195
Merge
Wed, 24 Mar 2010 14:16:57 -0700 Merge
asaha [Wed, 24 Mar 2010 14:16:57 -0700] rev 5194
Merge
Sat, 06 Mar 2010 03:37:53 +0300 6932659: JTreg test files were missed in push of 6887703
denis [Sat, 06 Mar 2010 03:37:53 +0300] rev 5193
6932659: JTreg test files were missed in push of 6887703 Reviewed-by: uta
Fri, 26 Feb 2010 03:54:52 -0800 6887703: Unsigned applet can retrieve the dragged information before drop action occur
denis [Fri, 26 Feb 2010 03:54:52 -0800] rev 5192
6887703: Unsigned applet can retrieve the dragged information before drop action occur Reviewed-by: uta
Mon, 22 Feb 2010 14:33:19 -0800 6902299: Java JAR "unpack200" must verify input parameters
ksrini [Mon, 22 Feb 2010 14:33:19 -0800] rev 5191
6902299: Java JAR "unpack200" must verify input parameters Summary: Added several checks for addition of values before memory allocation Reviewed-by: asaha
Fri, 19 Feb 2010 22:30:52 +0300 6899653: Sun Java Runtime CMM readMabCurveData Buffer Overflow Vulnerability
bae [Fri, 19 Feb 2010 22:30:52 +0300] rev 5190
6899653: Sun Java Runtime CMM readMabCurveData Buffer Overflow Vulnerability Reviewed-by: prr, hawtin
Wed, 17 Feb 2010 13:32:26 +0300 6909597: Sun Java Runtime Environment JPEGImageReader stepX Integer Overflow Vulnerability
bae [Wed, 17 Feb 2010 13:32:26 +0300] rev 5189
6909597: Sun Java Runtime Environment JPEGImageReader stepX Integer Overflow Vulnerability Reviewed-by: igor
Wed, 17 Feb 2010 13:10:26 +0300 6914823: Java AWT Library Invalid Index Vulnerability
bae [Wed, 17 Feb 2010 13:10:26 +0300] rev 5188
6914823: Java AWT Library Invalid Index Vulnerability Reviewed-by: flar, hawtin
Wed, 17 Feb 2010 12:49:41 +0300 6914866: Sun JRE ImagingLib arbitrary code execution vulnerability
bae [Wed, 17 Feb 2010 12:49:41 +0300] rev 5187
6914866: Sun JRE ImagingLib arbitrary code execution vulnerability Reviewed-by: prr, hawtin
Tue, 12 Jan 2010 12:13:48 +0000 6910590: Application can modify command array, in ProcessBuilder
michaelm [Tue, 12 Jan 2010 12:13:48 +0000] rev 5186
6910590: Application can modify command array, in ProcessBuilder Summary: clone array returned by List.toArray() Reviewed-by: chegar, alanb
Tue, 22 Dec 2009 17:56:58 +0300 6904691: Java Applet Trusted Methods Chaining Privilege Escalation Vulnerability
malenkov [Tue, 22 Dec 2009 17:56:58 +0300] rev 5185
6904691: Java Applet Trusted Methods Chaining Privilege Escalation Vulnerability Reviewed-by: hawtin, peterz
Fri, 18 Dec 2009 09:09:12 -0500 6904162: Add new VeriSign root CA certificates to JRE and remove some old/unused ones
mullan [Fri, 18 Dec 2009 09:09:12 -0500] rev 5184
6904162: Add new VeriSign root CA certificates to JRE and remove some old/unused ones Reviewed-by: asaha
Tue, 08 Dec 2009 15:58:49 -0500 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan [Tue, 08 Dec 2009 15:58:49 -0500] rev 5183
6633872: Policy/PolicyFile leak dynamic ProtectionDomains. Reviewed-by: hawtin
Mon, 07 Dec 2009 21:16:41 -0800 6898739: TLS renegotiation issue
xuelei [Mon, 07 Dec 2009 21:16:41 -0800] rev 5182
6898739: TLS renegotiation issue Summary: the interim fix disables TLS/SSL renegotiation Reviewed-by: mullan, chegar, wetmore
Fri, 04 Dec 2009 10:23:07 -0800 Merge
asaha [Fri, 04 Dec 2009 10:23:07 -0800] rev 5181
Merge
Wed, 02 Dec 2009 12:17:42 +0000 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm [Wed, 02 Dec 2009 12:17:42 +0000] rev 5180
6893954: Subclasses of InetAddress may incorrectly interpret network addresses Summary: runtime type checks and deserialization check Reviewed-by: chegar, alanb, jccollet
Tue, 01 Dec 2009 08:55:15 -0800 Merge
asaha [Tue, 01 Dec 2009 08:55:15 -0800] rev 5179
Merge
Thu, 26 Nov 2009 07:17:08 -0800 Merge
asaha [Thu, 26 Nov 2009 07:17:08 -0800] rev 5178
Merge
Wed, 25 Nov 2009 16:02:08 -0800 Merge
mchung [Wed, 25 Nov 2009 16:02:08 -0800] rev 5177
Merge
Wed, 25 Nov 2009 11:19:32 -0800 Merge
mchung [Wed, 25 Nov 2009 11:19:32 -0800] rev 5176
Merge
Wed, 25 Nov 2009 09:09:04 -0800 6893947: Deserialization of RMIConnectionImpl objects should enforce stricter checks [ZDI-CAN-588]
mchung [Wed, 25 Nov 2009 09:09:04 -0800] rev 5175
6893947: Deserialization of RMIConnectionImpl objects should enforce stricter checks [ZDI-CAN-588] Summary: narrow the doPrivileged block to only set context ClassLoader Reviewed-by: hawtin, emcmanus
Wed, 25 Nov 2009 12:51:00 -0800 6904925: Changeset for 6745393 for jdk7 ssr forest was incomplete
sherman [Wed, 25 Nov 2009 12:51:00 -0800] rev 5174
6904925: Changeset for 6745393 for jdk7 ssr forest was incomplete Summary: To add, commit and push back the ZStreamRef.java Reviewed-by: alanb
Wed, 25 Nov 2009 11:29:23 -0800 6745393: Inflater/Deflater clone issue
sherman [Wed, 25 Nov 2009 11:29:23 -0800] rev 5173
6745393: Inflater/Deflater clone issue Summary: To use explicit lobk object. Reviewed-by: alanb
Wed, 25 Nov 2009 10:02:50 +0000 6736390: File TOCTOU deserialization vulnerability
alanb [Wed, 25 Nov 2009 10:02:50 +0000] rev 5172
6736390: File TOCTOU deserialization vulnerability Reviewed-by: hawtin
Mon, 23 Nov 2009 12:40:46 +0000 6639665: ThreadGroup finalizer allows creation of false root ThreadGroups
chegar [Mon, 23 Nov 2009 12:40:46 +0000] rev 5171
6639665: ThreadGroup finalizer allows creation of false root ThreadGroups Reviewed-by: alanb, hawtin
Fri, 20 Nov 2009 14:24:56 -0800 Merge
asaha [Fri, 20 Nov 2009 14:24:56 -0800] rev 5170
Merge
Tue, 06 Oct 2009 12:20:35 -0700 6888149: AtomicReferenceArray causes SIGSEGV -> SEGV_MAPERR error
dl [Tue, 06 Oct 2009 12:20:35 -0700] rev 5169
6888149: AtomicReferenceArray causes SIGSEGV -> SEGV_MAPERR error Summary: Avoid integer overflow by using long arithmetic Reviewed-by: martin, dholmes
Sat, 03 Apr 2010 18:29:11 -0700 4947220: (process)Runtime.exec() cannot invoke applications with unicode parameters(win)
sherman [Sat, 03 Apr 2010 18:29:11 -0700] rev 5168
4947220: (process)Runtime.exec() cannot invoke applications with unicode parameters(win) Summary: to use CreateProcessW on Windowns platform Reviewed-by: martin
Tue, 30 Mar 2010 19:10:47 -0700 6902790: Converting/displaying HKSCs characters issue on Vista and Windows7
sherman [Tue, 30 Mar 2010 19:10:47 -0700] rev 5167
6902790: Converting/displaying HKSCs characters issue on Vista and Windows7 6911753: NSN wants to add Big5 HKSCS-2004 support Summary: support HKSCS2008 in Big5_HKSCS and MS950_HKSCS Reviewed-by: okutsu
Mon, 29 Mar 2010 13:27:25 +0800 6693917: regression tests need to update for supporting ECC on solaris 11
xuelei [Mon, 29 Mar 2010 13:27:25 +0800] rev 5166
6693917: regression tests need to update for supporting ECC on solaris 11 Reviewed-by: weijun
Thu, 25 Mar 2010 09:38:56 +0000 6937703: java/net regression test issues with samevm
chegar [Thu, 25 Mar 2010 09:38:56 +0000] rev 5165
6937703: java/net regression test issues with samevm Reviewed-by: alanb
Thu, 25 Mar 2010 12:07:42 +0800 6813340: X509Factory should not depend on is.available()==0
weijun [Thu, 25 Mar 2010 12:07:42 +0800] rev 5164
6813340: X509Factory should not depend on is.available()==0 Reviewed-by: xuelei
Tue, 23 Mar 2010 19:03:26 -0700 6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540
dcubed [Tue, 23 Mar 2010 19:03:26 -0700] rev 5163
6915365: 3/4 assert(false,"Unsupported VMGlobal Type") at management.cpp:1540 Summary: Remove exception throw to decouple JDK and HotSpot additions of known types. Reviewed-by: mchung
Tue, 23 Mar 2010 13:54:36 +0000 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar [Tue, 23 Mar 2010 13:54:36 +0000] rev 5162
6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets 6771432: createSocket() - smpatch fails using 1.6.0_10 because of "Unconnected sockets not implemented" 6766775: X509 certificate hostname checking is broken in JDK1.6.0_10 Summary: All three bugs are interdependent Reviewed-by: xuelei
Tue, 23 Mar 2010 10:41:11 +0800 6586707: NTLM authentication with proxy fails
weijun [Tue, 23 Mar 2010 10:41:11 +0800] rev 5161
6586707: NTLM authentication with proxy fails Reviewed-by: chegar
Mon, 22 Mar 2010 11:55:54 +0000 6632169: HttpClient and HttpsClient should not try to reverse lookup IP address of a proxy server
chegar [Mon, 22 Mar 2010 11:55:54 +0000] rev 5160
6632169: HttpClient and HttpsClient should not try to reverse lookup IP address of a proxy server Reviewed-by: michaelm
Fri, 19 Mar 2010 13:07:42 +0000 6935233: java/net/ServerSocket/AcceptCauseFileDescriptorLeak.java fails with modules build
chegar [Fri, 19 Mar 2010 13:07:42 +0000] rev 5159
6935233: java/net/ServerSocket/AcceptCauseFileDescriptorLeak.java fails with modules build Reviewed-by: alanb
Thu, 18 Mar 2010 18:52:10 -0700 Merge
lana [Thu, 18 Mar 2010 18:52:10 -0700] rev 5158
Merge
Thu, 18 Mar 2010 17:56:39 -0700 6837847: PKCS#11 A SecureRandom and a serialization error following installation of 1.5.0_18
valeriep [Thu, 18 Mar 2010 17:56:39 -0700] rev 5157
6837847: PKCS#11 A SecureRandom and a serialization error following installation of 1.5.0_18 Summary: Added a custom readObject method to PKCS11 SecureRandom impl Reviewed-by: wetmore
Thu, 18 Mar 2010 17:32:45 -0700 6591117: Poor preformance of PKCS#11 security provider compared to Sun default provider
valeriep [Thu, 18 Mar 2010 17:32:45 -0700] rev 5156
6591117: Poor preformance of PKCS#11 security provider compared to Sun default provider Summary: Added internal buffering to PKCS11 SecureRandom impl Reviewed-by: wetmore
Thu, 18 Mar 2010 17:05:42 -0700 6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep [Thu, 18 Mar 2010 17:05:42 -0700] rev 5155
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris" Summary: Added checking for RSA key lengths in initSign and initVerify Reviewed-by: vinnie
Thu, 18 Mar 2010 18:26:37 +0800 6829283: HTTP/Negotiate: Autheticator triggered again when user cancels the first one
weijun [Thu, 18 Mar 2010 18:26:37 +0800] rev 5154
6829283: HTTP/Negotiate: Autheticator triggered again when user cancels the first one Reviewed-by: chegar
Wed, 17 Mar 2010 09:55:04 +0800 6868865: Test: sun/security/tools/jarsigner/oldsig.sh fails under all platforms
weijun [Wed, 17 Mar 2010 09:55:04 +0800] rev 5153
6868865: Test: sun/security/tools/jarsigner/oldsig.sh fails under all platforms Reviewed-by: wetmore
Tue, 16 Mar 2010 14:31:57 +0000 6935199: java/net regression tests failing with Assertions
chegar [Tue, 16 Mar 2010 14:31:57 +0000] rev 5152
6935199: java/net regression tests failing with Assertions Reviewed-by: michaelm
Tue, 16 Mar 2010 10:05:51 +0000 6934923: test/java/net/ipv6tests/TcpTest.java hangs on Solaris 10
chegar [Tue, 16 Mar 2010 10:05:51 +0000] rev 5151
6934923: test/java/net/ipv6tests/TcpTest.java hangs on Solaris 10 Reviewed-by: alanb
Fri, 12 Mar 2010 09:06:00 -0800 Merge
ohair [Fri, 12 Mar 2010 09:06:00 -0800] rev 5150
Merge
Fri, 12 Mar 2010 09:03:02 -0800 6933294: Fix some test/Makefile issues around Linux ARCH settings, better defaults
ohair [Fri, 12 Mar 2010 09:03:02 -0800] rev 5149
6933294: Fix some test/Makefile issues around Linux ARCH settings, better defaults Reviewed-by: jjg
Thu, 11 Mar 2010 14:06:09 -0800 6929479: Add a system property sun.zip.disableMemoryMapping to disable mmap use in ZipFile
sherman [Thu, 11 Mar 2010 14:06:09 -0800] rev 5148
6929479: Add a system property sun.zip.disableMemoryMapping to disable mmap use in ZipFile Summary: system property sun.zip.disableMemoryMapping to disable mmap use Reviewed-by: alanb
Thu, 11 Mar 2010 17:50:30 +0000 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar [Thu, 11 Mar 2010 17:50:30 +0000] rev 5147
6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy Reviewed-by: michaelm, chegar Contributed-by: damjan.jov@gmail.com
Thu, 11 Mar 2010 17:37:33 +0000 6933629: java/net/HttpURLConnection/HttpResponseCode.java fails if run in samevm mode
chegar [Thu, 11 Mar 2010 17:37:33 +0000] rev 5146
6933629: java/net/HttpURLConnection/HttpResponseCode.java fails if run in samevm mode Reviewed-by: alanb
Thu, 11 Mar 2010 16:17:57 +0000 6934054: java/net/Socket/FDClose.java return error in samevm
chegar [Thu, 11 Mar 2010 16:17:57 +0000] rev 5145
6934054: java/net/Socket/FDClose.java return error in samevm Summary: test is no longer useful Reviewed-by: alanb
Wed, 10 Mar 2010 14:53:51 -0800 6931812: A better implementation of sun.nio.cs.Surrogate.isBMP(int)
martin [Wed, 10 Mar 2010 14:53:51 -0800] rev 5144
6931812: A better implementation of sun.nio.cs.Surrogate.isBMP(int) Summary: uc >> 16 == 0 is superior to (int) (char) uc == uc Reviewed-by: sherman Contributed-by: Ulf Zibis <ulf.zibis@gmx.de>
Wed, 10 Mar 2010 14:44:53 +0000 6933618: java/net/MulticastSocket/NoLoopbackPackets.java fails when rerun
chegar [Wed, 10 Mar 2010 14:44:53 +0000] rev 5143
6933618: java/net/MulticastSocket/NoLoopbackPackets.java fails when rerun Reviewed-by: alanb
Thu, 08 Apr 2010 15:01:57 -0700 Merge
lana [Thu, 08 Apr 2010 15:01:57 -0700] rev 5142
Merge
Fri, 19 Mar 2010 18:49:36 -0700 Merge
lana [Fri, 19 Mar 2010 18:49:36 -0700] rev 5141
Merge
Fri, 12 Mar 2010 01:09:13 +0000 6934327: Update linux fontconfigs for Ubuntu and Fedora.
andrew [Fri, 12 Mar 2010 01:09:13 +0000] rev 5140
6934327: Update linux fontconfigs for Ubuntu and Fedora. Summary: Use fontconfigs suitable for recent Fedora, Ubuntu and Debian releases. Reviewed-by: prr
Thu, 08 Apr 2010 15:00:16 -0700 Merge
lana [Thu, 08 Apr 2010 15:00:16 -0700] rev 5139
Merge
Tue, 30 Mar 2010 21:16:41 +0900 6907881: Different undesired behavior for entering Asian characters in Windows IME starting with Java 6.0
peytoia [Tue, 30 Mar 2010 21:16:41 +0900] rev 5138
6907881: Different undesired behavior for entering Asian characters in Windows IME starting with Java 6.0 Reviewed-by: okutsu
Tue, 30 Mar 2010 18:35:47 +0900 6939021: (tz) Support tzdata2010g
peytoia [Tue, 30 Mar 2010 18:35:47 +0900] rev 5137
6939021: (tz) Support tzdata2010g Reviewed-by: okutsu
(0) -3000 -1000 -120 +120 +1000 +3000 +10000 +30000 tip