# HG changeset patch # User horii # Date 1473905514 14400 # Node ID eeb56f4c36b19dbda94f61cf5415703cb3c7344a # Parent aac0cba4d82e300e6c45144b59651917c76d6faa 8165231: java.nio.Bits.unaligned() doesn't return true on ppc Reviewed-by: simonis, coffeys diff -r aac0cba4d82e -r eeb56f4c36b1 src/share/classes/java/nio/Bits.java --- a/src/share/classes/java/nio/Bits.java Thu Jul 13 05:15:10 2017 +0100 +++ b/src/share/classes/java/nio/Bits.java Wed Sep 14 22:11:54 2016 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -609,7 +609,8 @@ String arch = AccessController.doPrivileged( new sun.security.action.GetPropertyAction("os.arch")); unaligned = arch.equals("i386") || arch.equals("x86") - || arch.equals("amd64") || arch.equals("x86_64"); + || arch.equals("amd64") || arch.equals("x86_64") + || arch.equals("ppc64") || arch.equals("ppc64le"); unalignedKnown = true; return unaligned; } diff -r aac0cba4d82e -r eeb56f4c36b1 src/share/classes/sun/security/provider/ByteArrayAccess.java --- a/src/share/classes/sun/security/provider/ByteArrayAccess.java Thu Jul 13 05:15:10 2017 +0100 +++ b/src/share/classes/sun/security/provider/ByteArrayAccess.java Wed Sep 14 22:11:54 2016 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -94,7 +94,7 @@ String arch = java.security.AccessController.doPrivileged (new sun.security.action.GetPropertyAction("os.arch", "")); return arch.equals("i386") || arch.equals("x86") || arch.equals("amd64") - || arch.equals("x86_64"); + || arch.equals("x86_64") || arch.equals("ppc64") || arch.equals("ppc64le"); } /**