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.
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: mac80211: fix 5.18/5.19 brcm patch rockchip: adjust default DMA coherent_pool to 2MiB rockchip: move dts to files folder rockchip: reorder r66s/p2 eth ports rockchip: add smp tune for fastrhino r66s kernel: bump 5.10 to 5.10.136 kernel: bump 5.15 to 5.15.60 ipq807x: add default packages about nss (coolsnowwolf#9920)
- Loading branch information
Showing
11 changed files
with
41 additions
and
22 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.10 = .135 | ||
LINUX_KERNEL_HASH-5.10.135 = e499a61be9ce670716dd27b5124bb9ef6c6bc0e8fab443abf717a77136543344 | ||
LINUX_VERSION-5.10 = .136 | ||
LINUX_KERNEL_HASH-5.10.136 = 1c099d0d59e7d9f671dfc947e16891b7a3a45efd7dfcc6b1e55a194961e45159 |
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.15 = .59 | ||
LINUX_KERNEL_HASH-5.15.59 = e6ddc642057340db06b3b921c2b31bfed2c611359e8f144c3e5cf9c3ac33bccb | ||
LINUX_VERSION-5.15 = .60 | ||
LINUX_KERNEL_HASH-5.15.60 = 2d9545f7c96faffd8407522011b9533adefd1360118494dfb6c862f2f15e237a |
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
13 changes: 0 additions & 13 deletions
13
target/linux/rockchip/armv8/base-files/lib/preinit/04_reorder_eth
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
...et/linux/rockchip/patches-5.19/0911-kernel-dma-adjust-default-coherent_pool-to-2MiB.patch
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,28 @@ | ||
From 16bdf3e76fec6ddb44f1fcf221139fb39d225031 Mon Sep 17 00:00:00 2001 | ||
From: Igor Pecovnik <igor.pecovnik@gmail.com> | ||
Date: Sat, 2 Jan 2021 05:23:55 +0000 | ||
Subject: [PATCH] kernel: dma: adjust default coherent_pool to 2MiB | ||
|
||
--- | ||
kernel/dma/pool.c | 8 +++----- | ||
1 file changed, 3 insertions(+), 5 deletions(-) | ||
|
||
--- a/kernel/dma/pool.c | ||
+++ b/kernel/dma/pool.c | ||
@@ -189,13 +189,11 @@ static int __init dma_atomic_pool_init(v | ||
int ret = 0; | ||
|
||
/* | ||
- * If coherent_pool was not used on the command line, default the pool | ||
- * sizes to 128KB per 1GB of memory, min 128KB, max MAX_ORDER-1. | ||
+ * Always use 2MiB as default pool size. | ||
+ * See: https://forum.armbian.com/topic/4811-uas-mainline-kernel-coherent-pool-memory-size/ | ||
*/ | ||
if (!atomic_pool_size) { | ||
- unsigned long pages = totalram_pages() / (SZ_1G / SZ_128K); | ||
- pages = min_t(unsigned long, pages, MAX_ORDER_NR_PAGES); | ||
- atomic_pool_size = max_t(size_t, pages << PAGE_SHIFT, SZ_128K); | ||
+ atomic_pool_size = SZ_2M; | ||
} | ||
INIT_WORK(&atomic_pool_work, atomic_pool_work_fn); | ||
|