mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
kernel: bump 6.1 to 6.1.39 (#11396)
Link: https://lore.kernel.org/r/20230716194923.861634455@linuxfoundation.org Link: https://lore.kernel.org/r/20230717185609.886113843@linuxfoundation.org Link: https://lore.kernel.org/r/20230717201547.359923764@linuxfoundation.org Signed-off-by: Marty Jones <mj8263788@gmail.com> Co-authored-by: Marty Jones <mj8263788@gmail.com>
This commit is contained in:
parent
dff0d3553d
commit
279cda2a4c
@ -1,2 +1,2 @@
|
|||||||
LINUX_VERSION-6.1 = .38
|
LINUX_VERSION-6.1 = .39
|
||||||
LINUX_KERNEL_HASH-6.1.38 = f9a4f91b609f7d332a5f2be01ab86336fa00149fae6bdc19f16fa19f78802d43
|
LINUX_KERNEL_HASH-6.1.39 = 4cddee22fdf657138a06af653492f67cd3a4762c04a34725534bd200d99085b8
|
||||||
|
@ -87,7 +87,7 @@ Signed-off-by: T.J. Mercier <tjmercier@google.com>
|
|||||||
mark_page_accessed(page);
|
mark_page_accessed(page);
|
||||||
}
|
}
|
||||||
rss[mm_counter(page)]--;
|
rss[mm_counter(page)]--;
|
||||||
@@ -5170,8 +5169,8 @@ static inline void mm_account_fault(stru
|
@@ -5189,8 +5188,8 @@ static inline void mm_account_fault(stru
|
||||||
#ifdef CONFIG_LRU_GEN
|
#ifdef CONFIG_LRU_GEN
|
||||||
static void lru_gen_enter_fault(struct vm_area_struct *vma)
|
static void lru_gen_enter_fault(struct vm_area_struct *vma)
|
||||||
{
|
{
|
||||||
|
@ -141,7 +141,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
--- a/scripts/mod/modpost.c
|
--- a/scripts/mod/modpost.c
|
||||||
+++ b/scripts/mod/modpost.c
|
+++ b/scripts/mod/modpost.c
|
||||||
@@ -1817,7 +1817,9 @@ static void read_symbols(const char *mod
|
@@ -1781,7 +1781,9 @@ static void read_symbols(const char *mod
|
||||||
symname = remove_dot(info.strtab + sym->st_name);
|
symname = remove_dot(info.strtab + sym->st_name);
|
||||||
|
|
||||||
handle_symbol(mod, &info, sym, symname);
|
handle_symbol(mod, &info, sym, symname);
|
||||||
@ -151,7 +151,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
|
for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
|
||||||
@@ -1980,8 +1982,10 @@ static void add_header(struct buffer *b,
|
@@ -1944,8 +1946,10 @@ static void add_header(struct buffer *b,
|
||||||
buf_printf(b, "BUILD_SALT;\n");
|
buf_printf(b, "BUILD_SALT;\n");
|
||||||
buf_printf(b, "BUILD_LTO_INFO;\n");
|
buf_printf(b, "BUILD_LTO_INFO;\n");
|
||||||
buf_printf(b, "\n");
|
buf_printf(b, "\n");
|
||||||
@ -162,7 +162,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
buf_printf(b, "\n");
|
buf_printf(b, "\n");
|
||||||
buf_printf(b, "__visible struct module __this_module\n");
|
buf_printf(b, "__visible struct module __this_module\n");
|
||||||
buf_printf(b, "__section(\".gnu.linkonce.this_module\") = {\n");
|
buf_printf(b, "__section(\".gnu.linkonce.this_module\") = {\n");
|
||||||
@@ -1995,8 +1999,10 @@ static void add_header(struct buffer *b,
|
@@ -1959,8 +1963,10 @@ static void add_header(struct buffer *b,
|
||||||
buf_printf(b, "\t.arch = MODULE_ARCH_INIT,\n");
|
buf_printf(b, "\t.arch = MODULE_ARCH_INIT,\n");
|
||||||
buf_printf(b, "};\n");
|
buf_printf(b, "};\n");
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
buf_printf(b,
|
buf_printf(b,
|
||||||
"\n"
|
"\n"
|
||||||
@@ -2004,8 +2010,10 @@ static void add_header(struct buffer *b,
|
@@ -1968,8 +1974,10 @@ static void add_header(struct buffer *b,
|
||||||
"MODULE_INFO(retpoline, \"Y\");\n"
|
"MODULE_INFO(retpoline, \"Y\");\n"
|
||||||
"#endif\n");
|
"#endif\n");
|
||||||
|
|
||||||
@ -184,7 +184,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
if (strstarts(mod->name, "tools/testing"))
|
if (strstarts(mod->name, "tools/testing"))
|
||||||
buf_printf(b, "\nMODULE_INFO(test, \"Y\");\n");
|
buf_printf(b, "\nMODULE_INFO(test, \"Y\");\n");
|
||||||
@@ -2101,11 +2109,13 @@ static void add_depends(struct buffer *b
|
@@ -2065,11 +2073,13 @@ static void add_depends(struct buffer *b
|
||||||
|
|
||||||
static void add_srcversion(struct buffer *b, struct module *mod)
|
static void add_srcversion(struct buffer *b, struct module *mod)
|
||||||
{
|
{
|
||||||
@ -198,7 +198,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void write_buf(struct buffer *b, const char *fname)
|
static void write_buf(struct buffer *b, const char *fname)
|
||||||
@@ -2191,7 +2201,9 @@ static void write_mod_c_file(struct modu
|
@@ -2155,7 +2165,9 @@ static void write_mod_c_file(struct modu
|
||||||
add_exported_symbols(&buf, mod);
|
add_exported_symbols(&buf, mod);
|
||||||
add_versions(&buf, mod);
|
add_versions(&buf, mod);
|
||||||
add_depends(&buf, mod);
|
add_depends(&buf, mod);
|
||||||
|
@ -29,7 +29,7 @@ Subject: [PATCH] net/usb/qmi_wwan: add MeigLink modem support
|
|||||||
|
|
||||||
#define QUECTEL_VENDOR_ID 0x2c7c
|
#define QUECTEL_VENDOR_ID 0x2c7c
|
||||||
/* These Quectel products use Quectel's vendor ID */
|
/* These Quectel products use Quectel's vendor ID */
|
||||||
@@ -1173,6 +1175,11 @@ static const struct usb_device_id option
|
@@ -1177,6 +1179,11 @@ static const struct usb_device_id option
|
||||||
.driver_info = ZLP },
|
.driver_info = ZLP },
|
||||||
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96),
|
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96),
|
||||||
.driver_info = RSVD(4) },
|
.driver_info = RSVD(4) },
|
||||||
|
@ -330,7 +330,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
--- a/net/core/sock.c
|
--- a/net/core/sock.c
|
||||||
+++ b/net/core/sock.c
|
+++ b/net/core/sock.c
|
||||||
@@ -4088,6 +4088,8 @@ static __net_initdata struct pernet_oper
|
@@ -4093,6 +4093,8 @@ static __net_initdata struct pernet_oper
|
||||||
|
|
||||||
static int __init proto_init(void)
|
static int __init proto_init(void)
|
||||||
{
|
{
|
||||||
|
@ -1,121 +0,0 @@
|
|||||||
From eee53f6eb7561f516b9c4bac829ce31c48096130 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Fabian Frederick <fabf@skynet.be>
|
|
||||||
Date: Tue, 9 May 2017 22:30:03 +0200
|
|
||||||
Subject: [PATCH] jffs2: reduce stack usage in jffs2_build_xattr_subsystem()
|
|
||||||
|
|
||||||
Use kcalloc() for allocation/flush of 128 pointers table to
|
|
||||||
reduce stack usage.
|
|
||||||
|
|
||||||
Function now returns -ENOMEM or 0 on success.
|
|
||||||
|
|
||||||
stackusage
|
|
||||||
Before:
|
|
||||||
./fs/jffs2/xattr.c:775 jffs2_build_xattr_subsystem 1208
|
|
||||||
dynamic,bounded
|
|
||||||
|
|
||||||
After:
|
|
||||||
./fs/jffs2/xattr.c:775 jffs2_build_xattr_subsystem 192
|
|
||||||
dynamic,bounded
|
|
||||||
|
|
||||||
Also update definition when CONFIG_JFFS2_FS_XATTR is not enabled
|
|
||||||
|
|
||||||
Tested with an MTD mount point and some user set/getfattr.
|
|
||||||
|
|
||||||
Many current target on OpenWRT also suffer from a compilation warning
|
|
||||||
(that become an error with CONFIG_WERROR) with the following output:
|
|
||||||
|
|
||||||
fs/jffs2/xattr.c: In function 'jffs2_build_xattr_subsystem':
|
|
||||||
fs/jffs2/xattr.c:887:1: error: the frame size of 1088 bytes is larger than 1024 bytes [-Werror=frame-larger-than=]
|
|
||||||
887 | }
|
|
||||||
| ^
|
|
||||||
|
|
||||||
Using dynamic allocation fix this compilation warning.
|
|
||||||
|
|
||||||
Fixes: c9f700f840bd ("[JFFS2][XATTR] using 'delete marker' for xdatum/xref deletion")
|
|
||||||
Reported-by: Tim Gardner <tim.gardner@canonical.com>
|
|
||||||
Reported-by: kernel test robot <lkp@intel.com>
|
|
||||||
Reported-by: Ron Economos <re@w6rz.net>
|
|
||||||
Reported-by: Nathan Chancellor <nathan@kernel.org>
|
|
||||||
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
|
|
||||||
Signed-off-by: Fabian Frederick <fabf@skynet.be>
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Cc: stable@vger.kernel.org
|
|
||||||
---
|
|
||||||
fs/jffs2/build.c | 5 ++++-
|
|
||||||
fs/jffs2/xattr.c | 13 +++++++++----
|
|
||||||
fs/jffs2/xattr.h | 4 ++--
|
|
||||||
3 files changed, 15 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
--- a/fs/jffs2/build.c
|
|
||||||
+++ b/fs/jffs2/build.c
|
|
||||||
@@ -211,7 +211,10 @@ static int jffs2_build_filesystem(struct
|
|
||||||
ic->scan_dents = NULL;
|
|
||||||
cond_resched();
|
|
||||||
}
|
|
||||||
- jffs2_build_xattr_subsystem(c);
|
|
||||||
+ ret = jffs2_build_xattr_subsystem(c);
|
|
||||||
+ if (ret)
|
|
||||||
+ goto exit;
|
|
||||||
+
|
|
||||||
c->flags &= ~JFFS2_SB_FLAG_BUILDING;
|
|
||||||
|
|
||||||
dbg_fsbuild("FS build complete\n");
|
|
||||||
--- a/fs/jffs2/xattr.c
|
|
||||||
+++ b/fs/jffs2/xattr.c
|
|
||||||
@@ -772,10 +772,10 @@ void jffs2_clear_xattr_subsystem(struct
|
|
||||||
}
|
|
||||||
|
|
||||||
#define XREF_TMPHASH_SIZE (128)
|
|
||||||
-void jffs2_build_xattr_subsystem(struct jffs2_sb_info *c)
|
|
||||||
+int jffs2_build_xattr_subsystem(struct jffs2_sb_info *c)
|
|
||||||
{
|
|
||||||
struct jffs2_xattr_ref *ref, *_ref;
|
|
||||||
- struct jffs2_xattr_ref *xref_tmphash[XREF_TMPHASH_SIZE];
|
|
||||||
+ struct jffs2_xattr_ref **xref_tmphash;
|
|
||||||
struct jffs2_xattr_datum *xd, *_xd;
|
|
||||||
struct jffs2_inode_cache *ic;
|
|
||||||
struct jffs2_raw_node_ref *raw;
|
|
||||||
@@ -784,9 +784,12 @@ void jffs2_build_xattr_subsystem(struct
|
|
||||||
|
|
||||||
BUG_ON(!(c->flags & JFFS2_SB_FLAG_BUILDING));
|
|
||||||
|
|
||||||
+ xref_tmphash = kcalloc(XREF_TMPHASH_SIZE,
|
|
||||||
+ sizeof(struct jffs2_xattr_ref *), GFP_KERNEL);
|
|
||||||
+ if (!xref_tmphash)
|
|
||||||
+ return -ENOMEM;
|
|
||||||
+
|
|
||||||
/* Phase.1 : Merge same xref */
|
|
||||||
- for (i=0; i < XREF_TMPHASH_SIZE; i++)
|
|
||||||
- xref_tmphash[i] = NULL;
|
|
||||||
for (ref=c->xref_temp; ref; ref=_ref) {
|
|
||||||
struct jffs2_xattr_ref *tmp;
|
|
||||||
|
|
||||||
@@ -884,6 +887,8 @@ void jffs2_build_xattr_subsystem(struct
|
|
||||||
"%u of xref (%u dead, %u orphan) found.\n",
|
|
||||||
xdatum_count, xdatum_unchecked_count, xdatum_orphan_count,
|
|
||||||
xref_count, xref_dead_count, xref_orphan_count);
|
|
||||||
+ kfree(xref_tmphash);
|
|
||||||
+ return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct jffs2_xattr_datum *jffs2_setup_xattr_datum(struct jffs2_sb_info *c,
|
|
||||||
--- a/fs/jffs2/xattr.h
|
|
||||||
+++ b/fs/jffs2/xattr.h
|
|
||||||
@@ -71,7 +71,7 @@ static inline int is_xattr_ref_dead(stru
|
|
||||||
#ifdef CONFIG_JFFS2_FS_XATTR
|
|
||||||
|
|
||||||
extern void jffs2_init_xattr_subsystem(struct jffs2_sb_info *c);
|
|
||||||
-extern void jffs2_build_xattr_subsystem(struct jffs2_sb_info *c);
|
|
||||||
+extern int jffs2_build_xattr_subsystem(struct jffs2_sb_info *c);
|
|
||||||
extern void jffs2_clear_xattr_subsystem(struct jffs2_sb_info *c);
|
|
||||||
|
|
||||||
extern struct jffs2_xattr_datum *jffs2_setup_xattr_datum(struct jffs2_sb_info *c,
|
|
||||||
@@ -103,7 +103,7 @@ extern ssize_t jffs2_listxattr(struct de
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define jffs2_init_xattr_subsystem(c)
|
|
||||||
-#define jffs2_build_xattr_subsystem(c)
|
|
||||||
+#define jffs2_build_xattr_subsystem(c) (0)
|
|
||||||
#define jffs2_clear_xattr_subsystem(c)
|
|
||||||
|
|
||||||
#define jffs2_xattr_do_crccheck_inode(c, ic)
|
|
@ -161,7 +161,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
struct rtnl_link {
|
struct rtnl_link {
|
||||||
rtnl_doit_func doit;
|
rtnl_doit_func doit;
|
||||||
@@ -4817,7 +4817,9 @@ int ndo_dflt_bridge_getlink(struct sk_bu
|
@@ -4823,7 +4823,9 @@ int ndo_dflt_bridge_getlink(struct sk_bu
|
||||||
brport_nla_put_flag(skb, flags, mask,
|
brport_nla_put_flag(skb, flags, mask,
|
||||||
IFLA_BRPORT_MCAST_FLOOD, BR_MCAST_FLOOD) ||
|
IFLA_BRPORT_MCAST_FLOOD, BR_MCAST_FLOOD) ||
|
||||||
brport_nla_put_flag(skb, flags, mask,
|
brport_nla_put_flag(skb, flags, mask,
|
||||||
|
Loading…
Reference in New Issue
Block a user