tn3399_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>
2020-06-05 21:03:26 +01:00
..
backport-4.14 kernel: bump 4.14 to 4.14.180 2020-05-12 12:36:28 +02:00
backport-4.19 kernel: bump 4.19 to 4.19.122 2020-05-12 12:36:28 +02:00
backport-5.4 kernel: sch_cake: use skb hash improve wireguard compatibility 2020-06-05 21:03:26 +01:00
files kernel: b53: fix compilation with kernels 5.5+ 2020-06-05 12:42:45 +02:00
hack-4.14 kernel: bump 4.14 to 4.14.180 2020-05-12 12:36:28 +02:00
hack-4.19 kernel: bump 4.19 to 4.19.122 2020-05-12 12:36:28 +02:00
hack-5.4 kernel: fix portability issue with perf on linux 5.4 2020-06-04 21:52:57 +02:00
image treewide: replace nbd@openwrt.org with nbd@nbd.name 2016-06-07 08:58:42 +02:00
other-files kernel: move initramfs's init script out of base-files 2017-04-04 14:06:40 +02:00
pending-4.14 kernel: bump 4.14 to 4.14.180 2020-05-12 12:36:28 +02:00
pending-4.19 kernel: bump 4.19 to 4.19.123 2020-05-14 13:33:40 +02:00
pending-5.4 generic: mt7530: support adjusting EEE 2020-06-04 22:21:42 +02:00
config-4.14 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 2020-06-03 16:49:28 +02:00
config-4.19 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 2020-06-03 16:49:28 +02:00
config-5.4 linux/generic: remove obsolete config option LEDS_TRIGGER_IDE_DISK 2020-06-03 16:49:28 +02:00
PATCHES