mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-04 02:01:35 +00:00
220860ef4c
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.70 Removed upstreamed: generic/backport-6.6/902-net-llc-reset-skb-transport_header.patch[1] generic/pending-6.6/605-netfilter-nft_set_hash-unaligned-atomic-read-on-stru.patch[2] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.70&id=0c896816aa193e6459fc947747e5753c06b395b9 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.70&id=4f49349c1963e507aa37c1ec05178faeb0103959 Build system: x86/64 Build-tested: bcm27xx/bcm2712, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: bcm27xx/bcm2712, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/17545 Signed-off-by: Robert Marko <robimarko@gmail.com> (cherry picked from commit efafd7d47f8fa26a9f99283605c9324a833ef852)
28 lines
957 B
Diff
28 lines
957 B
Diff
From 536f2097dc397e4ebd0566e8f00219c02d7c8073 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Thu, 12 Sep 2024 10:06:50 +0100
|
|
Subject: [PATCH 1261/1350] mm/vmscan: Maintain TLB coherency in LRU code
|
|
|
|
As a workaround (and possibly a fix) for CPU spins observed on BCM2837,
|
|
use ptep_clear_flush_young instead of ptep_test_and_clear_young inside
|
|
lru_gen_look_around in order to expose PTE changes to the MMU. Note that
|
|
on architectures that don't require an explicit flush,
|
|
ptep_clear_flush_young just calls ptep_test_and_clear_young.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
mm/vmscan.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/mm/vmscan.c
|
|
+++ b/mm/vmscan.c
|
|
@@ -4723,7 +4723,7 @@ void lru_gen_look_around(struct page_vma
|
|
if (!folio)
|
|
continue;
|
|
|
|
- if (!ptep_test_and_clear_young(vma, addr, pte + i))
|
|
+ if (!ptep_clear_flush_young(vma, addr, pte + i))
|
|
VM_WARN_ON_ONCE(true);
|
|
|
|
young++;
|