forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* https://github.com/coolsnowwolf/lede: mediatek: filogic: add support for CMCC RAX3000M (NAND and eMMC version) mediatek: add support for ABT ASR3000 openssl: update to 3.0.13 Version update to R24.2.2 kernel: bump 6.6 to 6.6.15 (coolsnowwolf#11857) kernel: bump 6.1 to 6.1.76 (coolsnowwolf#11858)
- Loading branch information
Showing
18 changed files
with
52 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-5.4 = .278 | ||
LINUX_KERNEL_HASH-5.4.278 = e5a00606115545f444ef2766af5652f5539e3c96f46a9778bede89b98ffb8588 | ||
LINUX_VERSION-5.4 = .284 | ||
LINUX_KERNEL_HASH-5.4.284 = 77221ab9aebeac746915c755ec3b7d320f85cd219c63d9c501820fbca1e3b32b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.6 = .50 | ||
LINUX_KERNEL_HASH-6.6.50 = c065e36daf28210060c91a37ef3e92ac5814784e634577e04e406297ead2e86e | ||
LINUX_VERSION-6.6 = .51 | ||
LINUX_KERNEL_HASH-6.6.51 = 1c0c9a14650879c4913efdbac428ba31a540c3d987155ddf34d33e11eca008b3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,10 +116,10 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
|
||
--- a/net/bridge/br_fdb.c | ||
+++ b/net/bridge/br_fdb.c | ||
@@ -581,6 +581,7 @@ void br_fdb_update(struct net_bridge *br | ||
|
||
@@ -589,6 +589,7 @@ | ||
/* fastpath: update of existing entry */ | ||
if (unlikely(source != fdb->dst && !fdb->is_sticky)) { | ||
if (unlikely(source != fdb->dst && | ||
!test_bit(BR_FDB_STICKY, &fdb->flags))) { | ||
+ br_switchdev_fdb_notify(fdb, RTM_DELNEIGH); | ||
fdb->dst = source; | ||
fdb_modified = true; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ Signed-off-by: David Bauer <[email protected]> | |
#include <linux/crc32.h> | ||
#include <linux/if_vlan.h> | ||
#include <linux/uaccess.h> | ||
@@ -7035,6 +7036,22 @@ static void rtl_tally_reset(struct r8152 | ||
@@ -7044,6 +7045,22 @@ static void rtl_tally_reset(struct r8152 | ||
ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data); | ||
} | ||
|
||
|
@@ -45,7 +45,7 @@ Signed-off-by: David Bauer <[email protected]> | |
static void r8152b_init(struct r8152 *tp) | ||
{ | ||
u32 ocp_data; | ||
@@ -7076,6 +7093,8 @@ static void r8152b_init(struct r8152 *tp | ||
@@ -7085,6 +7102,8 @@ static void r8152b_init(struct r8152 *tp | ||
ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL); | ||
ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN); | ||
ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data); | ||
|
@@ -54,7 +54,7 @@ Signed-off-by: David Bauer <[email protected]> | |
} | ||
|
||
static void r8153_init(struct r8152 *tp) | ||
@@ -7216,6 +7235,8 @@ static void r8153_init(struct r8152 *tp) | ||
@@ -7225,6 +7244,8 @@ static void r8153_init(struct r8152 *tp) | ||
tp->coalesce = COALESCE_SLOW; | ||
break; | ||
} | ||
|
@@ -63,7 +63,7 @@ Signed-off-by: David Bauer <[email protected]> | |
} | ||
|
||
static void r8153b_init(struct r8152 *tp) | ||
@@ -7298,6 +7319,8 @@ static void r8153b_init(struct r8152 *tp | ||
@@ -7307,6 +7328,8 @@ static void r8153b_init(struct r8152 *tp | ||
rtl_tally_reset(tp); | ||
|
||
tp->coalesce = 15000; /* 15 us */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
INDIRECT_CALLABLE_DECLARE(struct dst_entry *ip6_dst_check(struct dst_entry *, | ||
u32)); | ||
INDIRECT_CALLABLE_DECLARE(struct dst_entry *ipv4_dst_check(struct dst_entry *, | ||
@@ -2247,9 +2264,11 @@ static void __sk_free(struct sock *sk) | ||
@@ -2239,9 +2256,11 @@ static void __sk_free(struct sock *sk) | ||
if (likely(sk->sk_net_refcnt)) | ||
sock_inuse_add(sock_net(sk), -1); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -330,7 +330,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/net/core/sock.c | ||
+++ b/net/core/sock.c | ||
@@ -4148,6 +4148,8 @@ static __net_initdata struct pernet_oper | ||
@@ -4140,6 +4140,8 @@ static __net_initdata struct pernet_oper | ||
|
||
static int __init proto_init(void) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Reviewed-by: Vladimir Oltean <[email protected]> | |
|
||
--- a/net/bridge/br_switchdev.c | ||
+++ b/net/bridge/br_switchdev.c | ||
@@ -102,42 +102,27 @@ int br_switchdev_set_port_flag(struct ne | ||
@@ -102,44 +102,27 @@ | ||
return 0; | ||
} | ||
|
||
|
@@ -53,7 +53,8 @@ Reviewed-by: Vladimir Oltean <[email protected]> | |
- br_switchdev_fdb_call_notifiers(false, fdb->key.addr.addr, | ||
- fdb->key.vlan_id, | ||
- fdb->dst->dev, | ||
- fdb->added_by_user, | ||
- test_bit(BR_FDB_ADDED_BY_USER, | ||
- &fdb->flags), | ||
- fdb->offloaded); | ||
+ call_switchdev_notifiers(SWITCHDEV_FDB_DEL_TO_DEVICE, | ||
+ fdb->dst->dev, &info.info, NULL); | ||
|
@@ -62,7 +63,8 @@ Reviewed-by: Vladimir Oltean <[email protected]> | |
- br_switchdev_fdb_call_notifiers(true, fdb->key.addr.addr, | ||
- fdb->key.vlan_id, | ||
- fdb->dst->dev, | ||
- fdb->added_by_user, | ||
- test_bit(BR_FDB_ADDED_BY_USER, | ||
- &fdb->flags), | ||
- fdb->offloaded); | ||
+ call_switchdev_notifiers(SWITCHDEV_FDB_ADD_TO_DEVICE, | ||
+ fdb->dst->dev, &info.info, NULL); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,16 +17,16 @@ Signed-off-by: Tobias Waldekranz <[email protected]> | |
|
||
--- a/net/bridge/br_fdb.c | ||
+++ b/net/bridge/br_fdb.c | ||
@@ -581,7 +581,7 @@ void br_fdb_update(struct net_bridge *br | ||
|
||
@@ -589,7 +589,7 @@ | ||
/* fastpath: update of existing entry */ | ||
if (unlikely(source != fdb->dst && !fdb->is_sticky)) { | ||
if (unlikely(source != fdb->dst && | ||
!test_bit(BR_FDB_STICKY, &fdb->flags))) { | ||
- br_switchdev_fdb_notify(fdb, RTM_DELNEIGH); | ||
+ br_switchdev_fdb_notify(br, fdb, RTM_DELNEIGH); | ||
fdb->dst = source; | ||
fdb_modified = true; | ||
/* Take over HW learned entry */ | ||
@@ -697,7 +697,7 @@ static void fdb_notify(struct net_bridge | ||
@@ -705,7 +705,7 @@ | ||
int err = -ENOBUFS; | ||
|
||
if (swdev_notify) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters