Skip to content

Commit 76a764d

Browse files
committed
kernel: bump all to latest HEAD
1 parent f08c8cb commit 76a764d

63 files changed

Lines changed: 169 additions & 8950 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

include/kernel-5.10

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.10 = .256
2-
LINUX_KERNEL_HASH-5.10.256 = f1e9dac8ec41e5bd7b1811158c7b72269696ce1c37fbdd17a898b293b54d8e5f
1+
LINUX_VERSION-5.10 = .260
2+
LINUX_KERNEL_HASH-5.10.260 = 47a8297131505b7d38338d39ad8a9d592507d33c695b27b1bbe55f25869a6b84

include/kernel-5.15

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.15 = .207
2-
LINUX_KERNEL_HASH-5.15.207 = 50eb7fa307745f30e5cae4c17e188fc42ce6a72f7d925d5ea7e3c2135de6148e
1+
LINUX_VERSION-5.15 = .210
2+
LINUX_KERNEL_HASH-5.15.210 = 910ba46ae15e7495a9624f89d7f11b24ccc8bc1ee4b3abdd502e75b055290a01

include/kernel-6.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.1 = .173
2-
LINUX_KERNEL_HASH-6.1.173 = c4f32c6cfbe8c31478f18a4b2a50f89e73f8641ba1d683d80efc16c898876d98
1+
LINUX_VERSION-6.1 = .176
2+
LINUX_KERNEL_HASH-6.1.176 = aa19772dba40e9737356c00d0671cdedbe26cc895eff062868f0a1f688ae44f6

include/kernel-6.18

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.18 = .35
2-
LINUX_KERNEL_HASH-6.18.35 = f78602932219125e211c5f5bfd84edcfd4ec5ce88fc944f8248413f665bef236
1+
LINUX_VERSION-6.18 = .38
2+
LINUX_KERNEL_HASH-6.18.38 = ac26e508abd56e9f8b89872b6e10c49fc823bcc70d8068a5d8504c1a7c4ff045

include/kernel-6.6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.6 = .139
2-
LINUX_KERNEL_HASH-6.6.139 = a7cd71371dae38ac94c6c332fe16391b83fe173158020e2ea1b37277f8f3d740
1+
LINUX_VERSION-6.6 = .144
2+
LINUX_KERNEL_HASH-6.6.144 = ec19b8307b495078cdc03749e63cb3802ac23cf6122c82eb9719feeb4557ecc3

target/linux/generic/backport-5.10/630-v5.15-page_pool_frag_support.patch

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -323,18 +323,6 @@
323323
trace_page_pool_state_release(pool, page, count);
324324
}
325325
EXPORT_SYMBOL(page_pool_release_page);
326-
@@ -331,7 +344,10 @@ static bool page_pool_recycle_in_ring(st
327-
else
328-
ret = ptr_ring_produce_bh(&pool->ring, page);
329-
330-
- return (ret == 0) ? true : false;
331-
+ if (!ret)
332-
+ return true;
333-
+
334-
+ return false;
335-
}
336-
337-
/* Only allow direct recycling in special circumstances, into the
338326
@@ -350,46 +366,43 @@ static bool page_pool_recycle_in_cache(s
339327
return true;
340328
}

target/linux/generic/backport-5.10/631-v6.3-net-page_pool-use-in_softirq-instead.patch

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,20 @@ Signed-off-by: Qingfang DENG <qingfang.deng@siflower.com.cn>
3434
spin_unlock_bh(&pool->ring.producer_lock);
3535
--- a/net/core/page_pool.c
3636
+++ b/net/core/page_pool.c
37-
@@ -338,8 +338,8 @@ static void page_pool_return_page(struct
38-
static bool page_pool_recycle_in_ring(struct page_pool *pool, struct page *page)
37+
@@ -338,10 +338,10 @@ static bool page_pool_producer_lock(struct page_pool *pool)
3938
{
40-
int ret;
41-
- /* BH protection not needed if current is serving softirq */
42-
- if (in_serving_softirq())
43-
+ /* BH protection not needed if current is softirq */
44-
+ if (in_softirq())
45-
ret = ptr_ring_produce(&pool->ring, page);
39+
- bool in_softirq = in_serving_softirq();
40+
+ bool softirq = in_softirq();
41+
42+
- if (in_softirq)
43+
+ if (softirq)
44+
spin_lock(&pool->ring.producer_lock);
4645
else
47-
ret = ptr_ring_produce_bh(&pool->ring, page);
46+
spin_lock_bh(&pool->ring.producer_lock);
47+
48+
- return in_softirq;
49+
+ return softirq;
50+
}
4851
@@ -397,7 +397,7 @@ __page_pool_put_page(struct page_pool *p
4952
page_pool_dma_sync_for_device(pool, page,
5053
dma_sync_size);

target/linux/generic/backport-6.1/790-57-v6.10-net-dsa-mt7530-rename-mt753x_bpdu_port_fw-enum-to-mt.patch

Lines changed: 0 additions & 169 deletions
This file was deleted.

target/linux/generic/backport-6.1/795-v6.3-05-r8152-reduce-the-control-transfer-of-rtl8152_get_ver.patch

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)