mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
9e1530b2a3
* Refreshed patches. * Removed patches: - target/linux/ar71xx/patches-4.9/103-MIPS-ath79-fix-register-address-in-ath79_ddr_wb_flus.patch superseded by upstream - target/linux/ar71xx/patches-4.9/403-mtd_fix_cfi_cmdset_0002_status_check.patch superseded by upstream - target/linux/brcm63xx/patches-4.9/001-4.11-01-mtd-m25p80-consider-max-message-size-in-m25p80_read.patch accepted upstream - target/linux/brcm63xx/patches-4.9/001-4.15-08-bcm63xx_enet-correct-clock-usage.patch accepted upstream - target/linux/brcm63xx/patches-4.9/001-4.15-09-bcm63xx_enet-do-not-write-to-random-DMA-channel-on-B.patch accepted upstream - target/linux/generic/pending-4.9/900-gen_stats-fix-netlink-stats-padding.patch * New backported patch to address ext4 breakage, introduced in 4.9.112: - backport-4.9/500-ext4-fix-check-to-prevent-initializing-reserved-inod.patch Also add ARM64_SSBD symbol to ARM64 targets still running kernel 4.9 Thanks to Koen Vandeputte for pointing out the need to add the ARM64_SSBD symbol, and the ext4 patch. Compile-tested on: ar71xx Run-tested on: ar71xx Signed-off-by: Stijn Segers <foss@volatilesystems.org>
24 lines
562 B
Diff
24 lines
562 B
Diff
--- a/net/core/skbuff.c
|
|
+++ b/net/core/skbuff.c
|
|
@@ -215,6 +215,9 @@ struct sk_buff *__alloc_skb(unsigned int
|
|
|
|
if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
|
|
gfp_mask |= __GFP_MEMALLOC;
|
|
+#ifdef CONFIG_ARCH_IXP4XX
|
|
+ gfp_mask |= GFP_DMA;
|
|
+#endif
|
|
|
|
/* Get the HEAD */
|
|
skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
|
|
@@ -1224,6 +1227,10 @@ int pskb_expand_head(struct sk_buff *skb
|
|
if (skb_shared(skb))
|
|
BUG();
|
|
|
|
+#ifdef CONFIG_ARCH_IXP4XX
|
|
+ gfp_mask |= GFP_DMA;
|
|
+#endif
|
|
+
|
|
size = SKB_DATA_ALIGN(size);
|
|
|
|
if (skb_pfmemalloc(skb))
|