Skip to content

Commit 5557866

Browse files
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: kernel: bump 5.10 to 5.10.157 (coolsnowwolf#10561) kernel: bump 6.0 to 6.0.11 (coolsnowwolf#10556) kernel: bump 5.15 to 5.15.81 (coolsnowwolf#10554)
2 parents 702d435 + 7468945 commit 5557866

File tree

112 files changed

+386
-382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+386
-382
lines changed

include/kernel-5.10

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.10 = .156
2-
LINUX_KERNEL_HASH-5.10.156 = 679e9964ca720027967391b61db990ceb7868e93e203f87724f18310f4955923
1+
LINUX_VERSION-5.10 = .157
2+
LINUX_KERNEL_HASH-5.10.157 = fc4cd7c0777ed53f1350e73877e9918df3c40d8e8abe93c6e1a0eb21556d327f

include/kernel-5.15

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.15 = .80
2-
LINUX_KERNEL_HASH-5.15.80 = 3b321a6466d2021f60ed8d4e33bba21db2f23efc2ddd2d9fb775393d9afdfd4d
1+
LINUX_VERSION-5.15 = .81
2+
LINUX_KERNEL_HASH-5.15.81 = 8f885cdebd754d6e63b920cf6c3e5713e91bbf5f52e9d99eb0054ef7e8f096ab

include/kernel-6.0

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.0 = .10
2-
LINUX_KERNEL_HASH-6.0.10 = 39e57fcd84cd70bfa3e1a4185d3aa0ed7f1432f24c6548d16326b0c3c9541dd0
1+
LINUX_VERSION-6.0 = .11
2+
LINUX_KERNEL_HASH-6.0.11 = 2bae6131e64971e1e34ff395fa542971134c857bdb0b29069ab847c7c9a9c762

package/network/config/firewall/patches/100-fullconenat.patch

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
index 85a3750..9fac9b1 100644
22
--- a/defaults.c
33
+++ b/defaults.c
4-
@@ -46,7 +46,9 @@ const struct fw3_option fw3_flag_opts[] = {
4+
@@ -48,7 +48,9 @@ const struct fw3_option fw3_flag_opts[]
55
FW3_OPT("synflood_protect", bool, defaults, syn_flood),
66
FW3_OPT("synflood_rate", limit, defaults, syn_flood_rate),
77
FW3_OPT("synflood_burst", int, defaults, syn_flood_rate.burst),
@@ -12,31 +12,27 @@ index 85a3750..9fac9b1 100644
1212
FW3_OPT("tcp_syncookies", bool, defaults, tcp_syncookies),
1313
FW3_OPT("tcp_ecn", int, defaults, tcp_ecn),
1414
FW3_OPT("tcp_window_scaling", bool, defaults, tcp_window_scaling),
15-
diff --git a/options.h b/options.h
16-
index 6edd174..c02eb97 100644
1715
--- a/options.h
1816
+++ b/options.h
19-
@@ -267,6 +267,7 @@ struct fw3_defaults
20-
bool drop_invalid;
17+
@@ -297,6 +297,7 @@ struct fw3_defaults
18+
enum fw3_reject_code any_reject_code;
2119

2220
bool syn_flood;
2321
+ bool fullcone;
2422
struct fw3_limit syn_flood_rate;
2523

2624
bool tcp_syncookies;
27-
diff --git a/zones.c b/zones.c
28-
index 2aa7473..57eead0 100644
2925
--- a/zones.c
3026
+++ b/zones.c
31-
@@ -627,6 +627,7 @@ print_zone_rule(struct fw3_ipt_handle *h
27+
@@ -670,6 +670,7 @@ print_zone_rule(struct fw3_ipt_handle *h
3228
struct fw3_address *msrc;
3329
struct fw3_address *mdest;
3430
struct fw3_ipt_rule *r;
3531
+ struct fw3_defaults *defs = &state->defaults;
3632

3733
if (!fw3_is_family(zone, handle->family))
3834
return;
39-
@@ -712,8 +713,22 @@ print_zone_rule(struct fw3_ipt_handle *h
35+
@@ -755,8 +756,22 @@ print_zone_rule(struct fw3_ipt_handle *h
4036
{
4137
r = fw3_ipt_rule_new(handle);
4238
fw3_ipt_rule_src_dest(r, msrc, mdest);

target/linux/ath79/patches-5.10/910-unaligned_access_hacks.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ SVN-Revision: 35130
258258
#include <linux/uaccess.h>
259259
#include <linux/ipv6.h>
260260
#include <linux/icmpv6.h>
261-
@@ -924,10 +925,10 @@ static void tcp_v6_send_response(const s
261+
@@ -926,10 +927,10 @@ static void tcp_v6_send_response(const s
262262
topt = (__be32 *)(t1 + 1);
263263

264264
if (tsecr) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ SVN-Revision: 35130
258258
#include <linux/uaccess.h>
259259
#include <linux/ipv6.h>
260260
#include <linux/icmpv6.h>
261-
@@ -941,10 +942,10 @@ static void tcp_v6_send_response(const s
261+
@@ -943,10 +944,10 @@ static void tcp_v6_send_response(const s
262262
topt = (__be32 *)(t1 + 1);
263263

264264
if (tsecr) {

target/linux/bcm27xx/patches-5.15/950-0470-sound-usb-add-device-quirks-for-A4Tech-FHD-1080p-web.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
2222
QUIRK_FLAG_GENERIC_IMPLICIT_FB),
2323
+ DEVICE_FLG(0x09da, 0x2695, /* A4Tech FHD 1080p webcam */
2424
+ QUIRK_FLAG_DISABLE_AUTOSUSPEND | QUIRK_FLAG_GET_SAMPLE_RATE),
25+
DEVICE_FLG(0x0525, 0xa4ad, /* Hamedal C20 usb camero */
26+
QUIRK_FLAG_IFACE_SKIP_CLOSE),
2527

26-
/* Vendor matches */
27-
VENDOR_FLG(0x045e, /* MS Lifecam */

target/linux/generic/backport-5.10/610-v5.13-01-netfilter-flowtable-separate-replace-destroy-and-sta.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
5858
}
5959

6060
static int nf_flow_table_block_setup(struct nf_flowtable *flowtable,
61-
@@ -1013,15 +1023,33 @@ EXPORT_SYMBOL_GPL(nf_flow_table_offload_
61+
@@ -1017,15 +1027,33 @@ EXPORT_SYMBOL_GPL(nf_flow_table_offload_
6262

6363
int nf_flow_table_offload_init(void)
6464
{

target/linux/generic/backport-5.10/610-v5.13-14-net-bridge-resolve-forwarding-path-for-VLAN-tag-acti.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
145145
const struct net_bridge *br)
146146
--- a/net/bridge/br_vlan.c
147147
+++ b/net/bridge/br_vlan.c
148-
@@ -1327,6 +1327,59 @@ int br_vlan_get_pvid_rcu(const struct ne
148+
@@ -1350,6 +1350,59 @@ int br_vlan_get_pvid_rcu(const struct ne
149149
}
150150
EXPORT_SYMBOL_GPL(br_vlan_get_pvid_rcu);
151151

target/linux/generic/backport-5.10/610-v5.13-27-netfilter-flowtable-bridge-vlan-hardware-offload-and.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
5757
break;
5858
--- a/net/bridge/br_vlan.c
5959
+++ b/net/bridge/br_vlan.c
60-
@@ -1374,6 +1374,8 @@ int br_vlan_fill_forward_path_mode(struc
60+
@@ -1397,6 +1397,8 @@ int br_vlan_fill_forward_path_mode(struc
6161

6262
if (path->bridge.vlan_mode == DEV_PATH_BR_VLAN_TAG)
6363
path->bridge.vlan_mode = DEV_PATH_BR_VLAN_KEEP;

0 commit comments

Comments
 (0)