Skip to content

Commit 6070792

Browse files
authored
kernel: bump 5.15 to 5.15.144 (#11728)
Signed-off-by: Beginner-Go <[email protected]>
1 parent d0f140b commit 6070792

File tree

37 files changed

+147
-1473
lines changed

37 files changed

+147
-1473
lines changed

include/kernel-5.15

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.15 = .143
2-
LINUX_KERNEL_HASH-5.15.143 = 096bb16ec07232f27f6a07998c41b655883a8d0a6bb613d39bf524a9ffd99e02
1+
LINUX_VERSION-5.15 = .144
2+
LINUX_KERNEL_HASH-5.15.144 = f053afafafce771acbf478afdd16e9aa85b0a0e328205c4f53276062300a5b3b

target/linux/ath79/patches-5.15/900-unaligned_access_hacks.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -589,15 +589,15 @@ SVN-Revision: 35130
589589
* XXX skbs on the gro_list have all been parsed and pulled
590590
--- a/include/net/addrconf.h
591591
+++ b/include/net/addrconf.h
592-
@@ -47,7 +47,7 @@ struct prefix_info {
592+
@@ -52,7 +52,7 @@ struct prefix_info {
593593
__be32 reserved2;
594594

595595
struct in6_addr prefix;
596596
-};
597597
+} __attribute__((packed, aligned(2)));
598598

599-
#include <linux/ipv6.h>
600-
#include <linux/netdevice.h>
599+
/* rfc4861 4.6.2: IPv6 PIO is 32 bytes in size */
600+
static_assert(sizeof(struct prefix_info) == 32);
601601
--- a/include/net/inet_ecn.h
602602
+++ b/include/net/inet_ecn.h
603603
@@ -138,9 +138,9 @@ static inline int IP6_ECN_set_ce(struct

0 commit comments

Comments
 (0)