Re: 8207404: MulticastSocket tests failing on Aix

2019-01-14 Thread Steve Groeger
Hi Volker, The reason the mcast_set_if_by_if_v4(env, this, fd, value); probably fails is that the socket that we are trying to set the IPPROTO_IP, IP_MULTICAST_IF options on has been created with the AF_INET6 family, and these options may not be valid. The socket is setup with the AF_INET6 fam

Re: 8207404: MulticastSocket tests failing on Aix

2019-01-14 Thread Volker Simonis
On Mon, Jan 14, 2019 at 2:19 PM Steve Groeger wrote: > > Hi Chris / Volker, > > I had already tried doing the same as is done for Linux, ie calling this first > > mcast_set_if_by_if_v4(env, this, fd, value); > > This still fails for some reason with EADDRNOTAVAIL. Finding this out is probably the

Re: 8207404: MulticastSocket tests failing on Aix

2019-01-14 Thread Steve Groeger
Hi Chris / Volker, I had already tried doing the same as is done for Linux, ie calling this first mcast_set_if_by_if_v4(env, this, fd, value); This still fails for some reason with EADDRNOTAVAIL. This error gets cleared by the if ((*env)->ExceptionCheck(env)){ (*env)->ExceptionClear(env

[13] RFR - 8216974: HttpConnection not returned to the pool after 204 response

2019-01-14 Thread Daniel Fuchs
Hi, Please find below a patch for: 8216974: HttpConnection not returned to the pool after 204 response https://bugs.openjdk.java.net/browse/JDK-8216974 webrev: http://cr.openjdk.java.net/~dfuchs/webrev_8216974/webrev.00/ While investigating some other bug I noticed that HTTP/1.1 connections wh