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.
Merge branch 'coolsnowwolf:master' into master
- Loading branch information
Showing
29 changed files
with
430 additions
and
32 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-6.1 = .75 | ||
LINUX_KERNEL_HASH-6.1.75 = 6cd19410330c13ec4c18fd28a83d3e40fc12a152815fb7c3e1b0764329093a56 | ||
LINUX_VERSION-6.1 = .76 | ||
LINUX_KERNEL_HASH-6.1.76 = 0580cc0e81ff9aee245f79531d8c1c5c7d711eee227cd4cf52d1ff335727b1fd |
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 = .14 | ||
LINUX_KERNEL_HASH-6.6.14 = fbe96b2db3f962cd2a96a849d554300e7a4555995160082d4f323c2a1dfa1584 | ||
LINUX_VERSION-6.6 = .15 | ||
LINUX_KERNEL_HASH-6.6.15 = ab290c7f8687f2f8af96e14abd0700ba8b282426151873690f51621d8d5f5faa |
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 |
---|---|---|
|
@@ -148,7 +148,7 @@ Signed-off-by: Greg Kroah-Hartman <[email protected]> | |
* of_find_node_by_phandle - Find a node given a phandle | ||
--- a/drivers/spi/spi.c | ||
+++ b/drivers/spi/spi.c | ||
@@ -2326,8 +2326,8 @@ of_register_spi_device(struct spi_contro | ||
@@ -2330,8 +2330,8 @@ of_register_spi_device(struct spi_contro | ||
} | ||
|
||
/* Select device driver */ | ||
|
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 |
---|---|---|
|
@@ -44,23 +44,23 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
obj-$(CONFIG_PROC_FS) += net-procfs.o | ||
--- a/net/core/sock.c | ||
+++ b/net/core/sock.c | ||
@@ -114,6 +114,7 @@ | ||
@@ -115,6 +115,7 @@ | ||
#include <linux/memcontrol.h> | ||
#include <linux/prefetch.h> | ||
#include <linux/compat.h> | ||
+#include <linux/cookie.h> | ||
|
||
#include <linux/uaccess.h> | ||
|
||
@@ -145,6 +146,7 @@ | ||
@@ -146,6 +147,7 @@ | ||
|
||
static DEFINE_MUTEX(proto_list_mutex); | ||
static LIST_HEAD(proto_list); | ||
+DEFINE_COOKIE(sock_cookie); | ||
|
||
static void sock_def_write_space_wfree(struct sock *sk); | ||
static void sock_def_write_space(struct sock *sk); | ||
@@ -584,6 +586,18 @@ discard_and_relse: | ||
@@ -585,6 +587,18 @@ discard_and_relse: | ||
} | ||
EXPORT_SYMBOL(__sk_receive_skb); | ||
|
||
|
@@ -79,7 +79,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 *, | ||
@@ -2187,9 +2201,11 @@ static void __sk_free(struct sock *sk) | ||
@@ -2188,9 +2202,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 | ||
@@ -4113,6 +4113,8 @@ static __net_initdata struct pernet_oper | ||
@@ -4114,6 +4114,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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/include/net/sch_generic.h | ||
+++ b/include/net/sch_generic.h | ||
@@ -589,12 +589,13 @@ extern struct Qdisc_ops noop_qdisc_ops; | ||
@@ -593,12 +593,13 @@ extern struct Qdisc_ops noop_qdisc_ops; | ||
extern struct Qdisc_ops pfifo_fast_ops; | ||
extern struct Qdisc_ops mq_qdisc_ops; | ||
extern struct Qdisc_ops noqueue_qdisc_ops; | ||
|
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 | ||
@@ -4124,6 +4124,8 @@ static __net_initdata struct pernet_oper | ||
@@ -4125,6 +4125,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
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,7 +17,7 @@ Signed-off-by: Steve French <[email protected]> | |
|
||
--- a/fs/smb/server/oplock.c | ||
+++ b/fs/smb/server/oplock.c | ||
@@ -1197,6 +1197,12 @@ int smb_grant_oplock(struct ksmbd_work * | ||
@@ -1203,6 +1203,12 @@ int smb_grant_oplock(struct ksmbd_work * | ||
return 0; | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -59,7 +59,7 @@ Signed-off-by: Pablo Neira Ayuso <[email protected]> | |
} | ||
--- a/net/netfilter/nft_flow_offload.c | ||
+++ b/net/netfilter/nft_flow_offload.c | ||
@@ -470,47 +470,14 @@ static struct nft_expr_type nft_flow_off | ||
@@ -475,47 +475,14 @@ static struct nft_expr_type nft_flow_off | ||
.owner = THIS_MODULE, | ||
}; | ||
|
||
|
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 |
---|---|---|
|
@@ -167,7 +167,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
#ifdef CONFIG_RPS | ||
remsd = oldsd->rps_ipi_list; | ||
oldsd->rps_ipi_list = NULL; | ||
@@ -11486,6 +11560,7 @@ static int __init net_dev_init(void) | ||
@@ -11495,6 +11569,7 @@ static int __init net_dev_init(void) | ||
INIT_CSD(&sd->defer_csd, trigger_rx_softirq, sd); | ||
spin_lock_init(&sd->defer_lock); | ||
|
||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ Signed-off-by: Robert Marko <[email protected]> | |
|
||
--- a/drivers/bus/mhi/host/main.c | ||
+++ b/drivers/bus/mhi/host/main.c | ||
@@ -900,6 +900,7 @@ int mhi_process_ctrl_ev_ring(struct mhi_ | ||
@@ -905,6 +905,7 @@ int mhi_process_ctrl_ev_ring(struct mhi_ | ||
switch (event) { | ||
case MHI_EE_SBL: | ||
st = DEV_ST_TRANSITION_SBL; | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ Signed-off-by: Felix Fietkau <[email protected]> | |
|
||
--- a/net/netfilter/nf_tables_api.c | ||
+++ b/net/netfilter/nf_tables_api.c | ||
@@ -8202,7 +8202,7 @@ static int nft_register_flowtable_net_ho | ||
@@ -8206,7 +8206,7 @@ static int nft_register_flowtable_net_ho | ||
err = flowtable->data.type->setup(&flowtable->data, | ||
hook->ops.dev, | ||
FLOW_BLOCK_BIND); | ||
|
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ Signed-off-by: Robert Marko <[email protected]> | |
|
||
--- a/drivers/bus/mhi/host/main.c | ||
+++ b/drivers/bus/mhi/host/main.c | ||
@@ -900,6 +900,7 @@ int mhi_process_ctrl_ev_ring(struct mhi_ | ||
@@ -905,6 +905,7 @@ int mhi_process_ctrl_ev_ring(struct mhi_ | ||
switch (event) { | ||
case MHI_EE_SBL: | ||
st = DEV_ST_TRANSITION_SBL; | ||
|
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT | ||
|
||
/dts-v1/; | ||
#include "mt7981b-cmcc-rax3000m.dts" | ||
|
||
/ { | ||
model = "CMCC RAX3000M (eMMC version)"; | ||
compatible = "cmcc,rax3000m-emmc", "mediatek,mt7981"; | ||
|
||
chosen { | ||
bootargs = "root=PARTLABEL=rootfs rootwait rootfstype=squashfs,f2fs"; | ||
}; | ||
}; | ||
|
||
&mmc0 { | ||
bus-width = <8>; | ||
max-frequency = <26000000>; | ||
no-sd; | ||
no-sdio; | ||
non-removable; | ||
pinctrl-names = "default", "state_uhs"; | ||
pinctrl-0 = <&mmc0_pins_default>; | ||
pinctrl-1 = <&mmc0_pins_uhs>; | ||
vmmc-supply = <®_3p3v>; | ||
status = "okay"; | ||
}; | ||
|
||
&pio { | ||
mmc0_pins_default: mmc0-pins { | ||
mux { | ||
function = "flash"; | ||
groups = "emmc_45"; | ||
}; | ||
}; | ||
|
||
mmc0_pins_uhs: mmc0-uhs-pins { | ||
mux { | ||
function = "flash"; | ||
groups = "emmc_45"; | ||
}; | ||
}; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT | ||
|
||
/dts-v1/; | ||
#include "mt7981b-cmcc-rax3000m.dts" | ||
|
||
/ { | ||
model = "CMCC RAX3000M (NAND version)"; | ||
compatible = "cmcc,rax3000m-nand", "mediatek,mt7981"; | ||
|
||
aliases { | ||
label-mac-device = &gmac1; | ||
}; | ||
}; | ||
|
||
&spi0 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&spi0_flash_pins>; | ||
status = "okay"; | ||
|
||
spi_nand: flash@0 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "spi-nand"; | ||
reg = <0>; | ||
|
||
spi-max-frequency = <52000000>; | ||
spi-tx-bus-width = <4>; | ||
spi-rx-bus-width = <4>; | ||
mediatek,nmbm; | ||
mediatek,bmt-max-ratio = <1>; | ||
mediatek,bmt-max-reserved-blocks = <64>; | ||
|
||
partitions { | ||
compatible = "fixed-partitions"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
partition@0 { | ||
label = "bl2"; | ||
reg = <0x00000 0x0100000>; | ||
read-only; | ||
}; | ||
|
||
partition@100000 { | ||
label = "u-boot-env"; | ||
reg = <0x100000 0x80000>; | ||
}; | ||
|
||
factory: partition@180000 { | ||
label = "factory"; | ||
reg = <0x180000 0x200000>; | ||
read-only; | ||
}; | ||
|
||
partition@380000 { | ||
label = "fip"; | ||
reg = <0x380000 0x200000>; | ||
read-only; | ||
}; | ||
|
||
partition@580000 { | ||
label = "ubi"; | ||
reg = <0x580000 0x7200000>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&pio { | ||
spi0_flash_pins: spi0-pins { | ||
mux { | ||
function = "spi"; | ||
groups = "spi0", "spi0_wp_hold"; | ||
}; | ||
|
||
conf-pu { | ||
pins = "SPI0_CS", "SPI0_HOLD", "SPI0_WP"; | ||
drive-strength = <8>; | ||
mediatek,pull-up-adv = <0>; /* bias-disable */ | ||
}; | ||
|
||
conf-pd { | ||
pins = "SPI0_CLK", "SPI0_MOSI", "SPI0_MISO"; | ||
drive-strength = <8>; | ||
mediatek,pull-up-adv = <0>; /* bias-disable */ | ||
}; | ||
}; | ||
}; | ||
|
||
&wifi { | ||
mediatek,mtd-eeprom = <&factory 0x0>; | ||
}; |
Oops, something went wrong.