RFR JDK-8043495: add native FileChannelImpl.transferTo0() implementation for AIX

2014-05-26 Thread Jonathan Lu
Hello, May I have following patch reviewed ? http://cr.openjdk.java.net/~luchsh/JDK-8043495/ The patch will add native FileChannelImpl.transferTo0() implementation for AIX by using the 'send_file' API, http://www-01.ibm.com/support/knowledgecenter/ssw_aix_71/com.ibm.aix.commtrf2/send_file.htm?la

Re: RFR JDK-8043495: add native FileChannelImpl.transferTo0() implementation for AIX

2014-05-26 Thread Alan Bateman
On 26/05/2014 10:04, Jonathan Lu wrote: Hello, May I have following patch reviewed ? http://cr.openjdk.java.net/~luchsh/JDK-8043495/ The patch will add native FileChannelImpl.transferTo0() implementation for AIX by using the 'send_file' A

Re: RFR: 8043666: Remove unused files from jaxp repository

2014-05-26 Thread Erik Joelsson
Looks good to me, Joe. /Erik On 2014-05-23 17:23, huizhe wang wrote: Removing unused files in jaxp repository. Most of them are META-INF/services files used by Apache build process. The COPYING files at the bottom came with SAX, but they are included in the THIRD_PARTY_README file already. P

8043958: Remove unused com.sun.pept classes from jdk repository

2014-05-26 Thread Alan Bateman
As part of modularity motivated clean-up, I'd like to remove the PEPt [1] classes from the jdk repository. The classes are excluded by the build so removing them should not have any impact. The removal not impact the copy of these classes in the corba repository (in a different package), thes

RFR: 8043762: Remove unused files from jaxws repository

2014-05-26 Thread Miroslav Kos
Hi everybody, here is the request for review for 8043762: Remove unused files from jaxws repository JBS: https://bugs.openjdk.java.net/browse/JDK-8043762 webrev: http://cr.openjdk.java.net/~mkos/8043762/jaxws.01/ Simple fix removing unused files in jaxws repo, no tests necessary. Thanks Miran

Re: RFR: 8043762: Remove unused files from jaxws repository

2014-05-26 Thread Lance Andersen
+1 -- Lance Andersen| Principal Member of Technical Staff | +1.781.442.2037 Oracle Java Engineering 1 Network Drive Burlington, MA 01803 lance.ander...@oracle.com Sent from my iPhone On May 26, 2014, at 7:57 AM, Miroslav Kos wrote: > Hi everybody, > > here is the request for review for > >

Re: RFR: 8043762: Remove unused files from jaxws repository

2014-05-26 Thread Alan Bateman
On 26/05/2014 12:57, Miroslav Kos wrote: Hi everybody, here is the request for review for 8043762: Remove unused files from jaxws repository JBS: https://bugs.openjdk.java.net/browse/JDK-8043762 webrev: http://cr.openjdk.java.net/~mkos/8043762/jaxws.01/ Simple fix removing unused files in jaxw

Re: RFR [8043476] java/util/BitSet/BSMethods.java failed with: java.lang.OutOfMemoryError: Java heap space

2014-05-26 Thread Alan Bateman
On 25/05/2014 07:43, Ivan Gerasimov wrote: Hello! There was a bug in BitSet.toString() fixed with JDK-8040806. Unfortunately, the test that had come with this change started to fail with OOM. This is because it needs to create a BitSet with the bit Integer.MAX_VALUE set, so this BitSet occupie

Re: 8043958: Remove unused com.sun.pept classes from jdk repository

2014-05-26 Thread Lance @ Oracle
+1 Lance Andersen| Principal Member of Technical Staff | +1.781.442.2037 Oracle Java Engineering 1 Network Drive Burlington, MA 01803 lance.ander...@oracle.com Sent from my iPad On May 26, 2014, at 7:11 AM, Alan Bateman wrote: > > As part of modularity motivated clean-up, I'd like to remov

Re: RFR [8043476] java/util/BitSet/BSMethods.java failed with: java.lang.OutOfMemoryError: Java heap space

2014-05-26 Thread Ivan Gerasimov
Thank you Alan! On 26.05.2014 16:31, Alan Bateman wrote: On 25/05/2014 07:43, Ivan Gerasimov wrote: Hello! There was a bug in BitSet.toString() fixed with JDK-8040806. Unfortunately, the test that had come with this change started to fail with OOM. This is because it needs to create a BitSet

Re: RFR: 8043129: JAF initialisation in SAAJ clashing with the one in javax.mail

2014-05-26 Thread info
Hey Miroslav, is this correct that the issue will be fixed on jdk9 only (as stated on https://bugs.openjdk.java.net/browse/JDK-8043129). Since this is a major loss of functionality which we encountered too, this should be fixed with the next jdk 7 release. Regards Hajo Quoting miroslav..

Re: RFR JDK-8043495: add native FileChannelImpl.transferTo0() implementation for AIX

2014-05-26 Thread Jonathan Lu
Hi Alan, Thank you for the comments, here's the updated webrev, http://cr.openjdk.java.net/~luchsh/JDK-8043495-2/ On Mon, May 26, 2014 at 6:09 PM, Alan Bateman wrote: > On 26/05/2014 10:04, Jonathan Lu wrote: > >> Hello, >> >> May I have following patch reviewed ? >> >> http://cr.openjdk.java.ne

Re: RFR JDK-8043495: add native FileChannelImpl.transferTo0() implementation for AIX

2014-05-26 Thread Alan Bateman
On 27/05/2014 07:31, Jonathan Lu wrote: Hi Alan, Thank you for the comments, here's the updated webrev, http://cr.openjdk.java.net/~luchsh/JDK-8043495-2/ Thanks for the updates and for including the the ifdef __APPLE__ change. With the gets