mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
9f8ccc030b
NCM tries to batch TX packets using timeouts (500us) and does not send packets before 3 packets are in the submit queue. Timeouts take milliseconds on dde_linux which leads to delayed ACKs and poor performance for the RX case. Therefore, we send small packets (<100 Bytes) immediately without batching (it might be an ACK or last packet of a larger transfer). issue #4958
24 lines
836 B
Plaintext
24 lines
836 B
Plaintext
LICENSE := GPLv2
|
|
VERSION := 6.1.20
|
|
DOWNLOADS := linux.archive
|
|
|
|
URL(linux) := https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-$(VERSION).tar.xz
|
|
SHA(linux) := 76322de8c01a3c63b42c4d1e9b9e7d1897ddb91276e10d73d1f9df3562f031f0
|
|
DIR(linux) := src/linux
|
|
|
|
#
|
|
# Patches
|
|
#
|
|
PATCH_FILES := i915_irq.patch \
|
|
iwlwifi_enable_irq_before_pnvm.patch \
|
|
iwlwifi_limit_rx_bufs.patch \
|
|
usb_net_pinephone.patch \
|
|
usb_net_cdc_ncm.patch \
|
|
workqueue_deadlock.patch
|
|
PATCHES += $(addprefix patches/,$(PATCH_FILES))
|
|
|
|
PATCH_OPT(patches/i915_irq.patch) := -p1 -d${DIR(linux)}
|
|
PATCH_OPT(patches/usb_net_pinephone.patch) := -p1 -d${DIR(linux)}
|
|
PATCH_OPT(patches/usb_net_cdc_ncm.patch) := -p1 -d${DIR(linux)}
|
|
PATCH_OPT(patches/workqueue_deadlock.patch) := -p1 -d${DIR(linux)}
|