summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Audia2024-07-09 20:20:30 +0000
committerHauke Mehrtens2024-07-10 21:59:37 +0000
commitdf1c85956abecedb34e48edd5fd8ad9b03d818c1 (patch)
tree08c19589d36decb70dcd753509d5f6ebf4451398
parent69dd5a788fe3f5d7a6b8a0264dcbb31439275ac4 (diff)
downloadopenwrt-df1c85956abecedb34e48edd5fd8ad9b03d818c1.tar.gz
kernel: bump 6.6 to 6.6.38
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.38 Removed target/linux/generic/hack-6.6/900-fix-build-to-handle-return-value.patch which was introduced as a hacky attempt to fix an upstream issue related to 6.6.37. Build system: x86/64 Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/15879 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--include/kernel-6.64
-rw-r--r--target/linux/generic/hack-6.6/900-fix-build-to-handle-return-value.patch19
2 files changed, 2 insertions, 21 deletions
diff --git a/include/kernel-6.6 b/include/kernel-6.6
index 9661cd01d0..ebd26db32b 100644
--- a/include/kernel-6.6
+++ b/include/kernel-6.6
@@ -1,2 +1,2 @@
-LINUX_VERSION-6.6 = .37
-LINUX_KERNEL_HASH-6.6.37 = f3976e77708694fe4a1f8d1307c315c8a36cbc58f038a38e006b91e29a1f3214
+LINUX_VERSION-6.6 = .38
+LINUX_KERNEL_HASH-6.6.38 = 4ed403ffb550565d03485aeca9a52c128cdde43f4a373a1a9ee3a590524fe743
diff --git a/target/linux/generic/hack-6.6/900-fix-build-to-handle-return-value.patch b/target/linux/generic/hack-6.6/900-fix-build-to-handle-return-value.patch
deleted file mode 100644
index b1b2bc9b95..0000000000
--- a/target/linux/generic/hack-6.6/900-fix-build-to-handle-return-value.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/arch/arm64/net/bpf_jit_comp.c
-+++ b/arch/arm64/net/bpf_jit_comp.c
-@@ -1526,6 +1526,7 @@ struct bpf_prog *bpf_int_jit_compile(str
- bool extra_pass = false;
- struct jit_ctx ctx;
- u8 *image_ptr;
-+ int ret;
-
- if (!prog->jit_requested)
- return orig_prog;
-@@ -1648,7 +1649,7 @@ skip_init_ctx:
- prog->jited_len = 0;
- goto out_off;
- }
-- bpf_jit_binary_lock_ro(header);
-+ ret = bpf_jit_binary_lock_ro(header);
- } else {
- jit_data->ctx = ctx;
- jit_data->image = image_ptr;