summaryrefslogtreecommitdiffstats
path: root/target/linux/ath79
diff options
context:
space:
mode:
authorJohn Audia <therealgraysky@proton.me>2024-02-23 15:40:12 -0500
committerHauke Mehrtens <hauke@hauke-m.de>2024-02-24 19:25:02 +0100
commit33e72e0b3d3ba90b2eeeab1c61ff8597693c000d (patch)
tree97b7c6db28c2885a0e55bf3de3ba3f19ee0116fd /target/linux/ath79
parentfdd3a05c407d2d0793ec9434cd31197b15846f8d (diff)
downloadopenwrt-33e72e0b3d3ba90b2eeeab1c61ff8597693c000d.tar.gz
openwrt-33e72e0b3d3ba90b2eeeab1c61ff8597693c000d.tar.bz2
openwrt-33e72e0b3d3ba90b2eeeab1c61ff8597693c000d.zip
kernel: bump 6.1 to 6.1.79
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.79 Manually rebased: ath79/patches-6.1/900-unaligned_access_hacks.patch All other patches automatically rebased. Build system: x86/64 Build-tested: x86/64/AMD Cezanne, ramips/tplink_archer-a6-v3, flogic/xiaomi_redmi-router-ax6000-ubootmod Run-tested: x86/64/AMD Cezanne, ramips/tplink_archer-a6-v3, flogic/xiaomi_redmi-router-ax6000-ubootmod Signed-off-by: John Audia <therealgraysky@proton.me>
Diffstat (limited to 'target/linux/ath79')
-rw-r--r--target/linux/ath79/patches-6.1/900-unaligned_access_hacks.patch5
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/ath79/patches-6.1/900-unaligned_access_hacks.patch b/target/linux/ath79/patches-6.1/900-unaligned_access_hacks.patch
index b6f6d63f68..945143867a 100644
--- a/target/linux/ath79/patches-6.1/900-unaligned_access_hacks.patch
+++ b/target/linux/ath79/patches-6.1/900-unaligned_access_hacks.patch
@@ -86,7 +86,7 @@ SVN-Revision: 35130
} while (word != stop);
return csum_fold(csum);
-@@ -179,73 +183,6 @@ static inline __sum16 ip_compute_csum(co
+@@ -179,74 +183,6 @@ static inline __sum16 ip_compute_csum(co
return csum_fold(csum_partial(buff, len, 0));
}
@@ -152,7 +152,8 @@ SVN-Revision: 35130
- " .set pop"
- : "=&r" (sum), "=&r" (tmp)
- : "r" (saddr), "r" (daddr),
-- "0" (htonl(len)), "r" (htonl(proto)), "r" (sum));
+- "0" (htonl(len)), "r" (htonl(proto)), "r" (sum)
+- : "memory");
-
- return csum_fold(sum);
-}