Re: RFR: 8273101: Eliminate the usage of threadgroup sandboxing in the java.util.logging

2021-09-16 Thread Sergey Bylokhov
On Mon, 6 Sep 2021 09:39:58 GMT, Alan Bateman wrote: > No objection to removing this legacy/unused code but I think it would be > useful to useful to have the JBS issue or the PR summary provide a bit more > context. As I see it, this is just one piece of the overall cleanup and I > assume the

Re: RFR: 8273297: AES/GCM non-AVX512+VAES CPUs suffer after 8267125

2021-09-16 Thread Smita Kamath
On Tue, 14 Sep 2021 13:31:19 GMT, Andrew Haley wrote: >> Performance dropped up to 10% for 1k data after 8267125 for CPUs that do not >> support the new intrinsic. Tests run were crypto.full.AESGCMBench and >> crypto.full.AESGCMByteBuffer from the jmh micro benchmarks. >> >> The problem is eac

Re: RFR: 8273297: AES/GCM non-AVX512+VAES CPUs suffer after 8267125

2021-09-16 Thread Smita Kamath
On Mon, 13 Sep 2021 12:50:12 GMT, Andrew Haley wrote: >> src/hotspot/share/opto/library_call.cpp line 6796: >> >>> 6794: >>> 6795: Node* avx512_subkeyHtbl = new_array(klass_node, intcon(96), 0); >>> 6796: if (avx512_subkeyHtbl == NULL) return false; >> >> This looks very Intel-specific, bu

Re: RFR: 8268764: Use Long.hashCode() instead of int-cast where applicable [v4]

2021-09-16 Thread Сергей Цыпанов
On Thu, 1 Jul 2021 12:19:53 GMT, Сергей Цыпанов wrote: >> In some JDK classes there's still the following hashCode() implementation: >> >> long objNum; >> >> public int hashCode() { >> return (int) objNum; >> } >> >> This outdated expression should be replaced with Long.hashCode(long) as

Re: RFR: 8273646: Add openssl from path variable also in to Default System Openssl Path in OpensslArtifactFetcher

2021-09-16 Thread Thejasvi Voniadka
On Wed, 15 Sep 2021 21:49:01 GMT, Weijun Wang wrote: > My understanding is that the $PATH variable usually already contains > `/usr/bin` and `/usr/local/bin`. If you switch to $PATH, maybe it's no more > necessary to try out those 2 anymore? > > Just curious, what is the full path of openssl o