You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/generic
Kevin Darbyshire-Bryant 7b4877c204 kernel: sch_cake: use skb hash improve wireguard compatibility
While the other fq-based qdiscs take advantage of skb->hash and doesn't
recompute it if it is already set, sch_cake does not.

This was a deliberate choice because sch_cake hashes various parts of the
packet header to support its advanced flow isolation modes. However,
foregoing the use of skb->hash entirely loses a few important benefits:

- When skb->hash is set by hardware, a few CPU cycles can be saved by not
  hashing again in software.

- Tunnel encapsulations will generally preserve the value of skb->hash from
  before the encapsulation, which allows flow-based qdiscs to distinguish
  between flows even though the outer packet header no longer has flow
  information.

It turns out that we can preserve these desirable properties in many cases,
while still supporting the advanced flow isolation properties of sch_cake.
This patch does so by reusing the skb->hash value as the flow_hash part of
the hashing procedure in cake_hash() only in the following conditions:

- If the skb->hash is marked as covering the flow headers (skb->l4_hash is
  set)

AND

- NAT header rewriting is either disabled, or did not change any values
  used for hashing. The latter is important to match local-origin packets
  such as those of a tunnel endpoint.

The immediate motivation for fixing this was the recent patch to WireGuard
to preserve the skb->hash on encapsulation. As such, this is also what I
tested against; with this patch, added latency under load for competing
flows drops from ~8 ms to sub-1ms on an RRUL test over a WireGuard tunnel
going through a virtual link shaped to 1Gbps using sch_cake. This matches
the results we saw with a similar setup using sch_fq_codel when testing the
WireGuard patch.

Fixes: 046f6fd5daef ("sched: Add Common Applications Kept Enhanced (cake) qdisc")
Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
4 years ago
..
backport-4.14 kernel: bump 4.14 to 4.14.180 4 years ago
backport-4.19 kernel: bump 4.19 to 4.19.122 4 years ago
backport-5.4 kernel: sch_cake: use skb hash improve wireguard compatibility 4 years ago
files kernel: b53: fix compilation with kernels 5.5+ 4 years ago
hack-4.14 kernel: bump 4.14 to 4.14.180 4 years ago
hack-4.19 kernel: bump 4.19 to 4.19.122 4 years ago
hack-5.4 kernel: fix portability issue with perf on linux 5.4 4 years ago
image treewide: replace nbd@openwrt.org with nbd@nbd.name 8 years ago
other-files kernel: move initramfs's init script out of base-files 7 years ago
pending-4.14 kernel: bump 4.14 to 4.14.180 4 years ago
pending-4.19 kernel: bump 4.19 to 4.19.123 4 years ago
pending-5.4 generic: mt7530: support adjusting EEE 4 years ago
PATCHES kernel: update PATCHES with a stricter policy 11 years ago
config-4.14 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 4 years ago
config-4.19 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 4 years ago
config-5.4 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 4 years ago