This is an automated email from the ASF dual-hosted git repository.
sdanilov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new fd9f4f9452f IGNITE-25564 Allow unaligned memory access on Aarch64
(#5954)
fd9f4f9452f is described below
commit fd9f4f9452fae87583f2573deb43ddef57e36f52
Author: Semyon Danilov <[email protected]>
AuthorDate: Mon Jun 2 16:35:45 2025 +0400
IGNITE-25564 Allow unaligned memory access on Aarch64 (#5954)
---
.../core/src/main/java/org/apache/ignite/internal/util/GridUnsafe.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/internal/util/GridUnsafe.java
b/modules/core/src/main/java/org/apache/ignite/internal/util/GridUnsafe.java
index 253fb27fba1..43b7e38d886 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/util/GridUnsafe.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/util/GridUnsafe.java
@@ -1425,7 +1425,7 @@ public abstract class GridUnsafe {
private static boolean unaligned() {
String arch = System.getProperty("os.arch");
- return "i386".equals(arch) || "x86".equals(arch) ||
"amd64".equals(arch) || "x86_64".equals(arch);
+ return "i386".equals(arch) || "x86".equals(arch) ||
"amd64".equals(arch) || "x86_64".equals(arch) || "aarch64".equals(arch);
}
/**