valkey: upgrade 9.0.0 -> 9.0.1

0001-src-config.h-Enable-HAVE_ARM_NEON-on-AArch64.patch
removed since it's included in 9.0.1

Changelog:
===========
- Authenticate slot migration client on source node to internal user
- Bug fix: reset io_last_written on c->buf resize to prevent stale pointers
- Sentinel: fix regression requiring "+failover" ACL in failover path
- Cluster: Avoid usage of light weight messages to nodes with not ready bidirectional links
- Send duplicate multi meet packet only for node which supports it in mixed clusters
- Fix: LTRIM should not call signalModifiedKey when no elements are removed
- Fix build on some 32-bit ARM by only using NEON on AArch64
- Fix deadlock in IO-thread shutdown during panic
- Fix COMMANDLOG large-reply when using reply copy avoidance
- Fix CLUSTER SLOTS crash when called from module timer callback

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Wang Mingyu 2025-12-18 17:03:46 +08:00 committed by Khem Raj
parent 7354926b8d
commit 31b3c8bec5
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 10 additions and 43 deletions

View File

@ -1,31 +0,0 @@
From b15bcea48132bb8e8c1c2a4a05860cd5b73db5fd Mon Sep 17 00:00:00 2001
From: Leon Anavi <leon.anavi@konsulko.com>
Date: Tue, 25 Nov 2025 08:56:49 +0000
Subject: [PATCH] src/config.h: Enable HAVE_ARM_NEON on AArch64
Only enable HAVE_ARM_NEON on AArch64 because it supports vaddvq and
all needed compiler intrinsics.
Upstream-Status: Submitted [https://github.com/valkey-io/valkey/pull/2873]
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
src/config.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/config.h b/src/config.h
index de0c24dcc..0c6b111a9 100644
--- a/src/config.h
+++ b/src/config.h
@@ -392,7 +392,7 @@ void setcpuaffinity(const char *cpulist);
#endif
/* Check if we can compile ARM SIMD code */
-#if defined(__ARM_NEON) || defined(__ARM_NEON__)
+#if defined(__aarch64__) && (defined(__ARM_NEON) || defined(__ARM_NEON__))
#define HAVE_ARM_NEON 1
#else
#define HAVE_ARM_NEON 0
--
2.47.3

View File

@ -6,18 +6,16 @@ LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://COPYING;md5=08b9159809d809e8aaa340a8387e693e"
DEPENDS = "readline lua ncurses"
SRC_URI = " \
git://github.com/valkey-io/valkey.git;branch=9.0;protocol=https \
file://valkey.conf \
file://init-valkey-server \
file://valkey.service \
file://lua-update-Makefile-to-use-environment-build-setting.patch \
file://oe-use-libc-malloc.patch \
file://0001-src-Do-not-reset-FINAL_LIBS.patch \
file://GNU_SOURCE-7.patch \
file://0001-src-config.h-Enable-HAVE_ARM_NEON-on-AArch64.patch \
"
SRCREV = "5018b12b0de2d2322a1bbf6b041c43740587c0f2"
SRC_URI = "git://github.com/valkey-io/valkey.git;branch=9.0;protocol=https;tag=${PV} \
file://valkey.conf \
file://init-valkey-server \
file://valkey.service \
file://lua-update-Makefile-to-use-environment-build-setting.patch \
file://oe-use-libc-malloc.patch \
file://0001-src-Do-not-reset-FINAL_LIBS.patch \
file://GNU_SOURCE-7.patch \
"
SRCREV = "ab3c953b80289d88991095f53c1235fc2f8b44d6"
RPROVIDES:${PN} = "virtual-redis"