On Fri, 14 Aug 2020, Thomas K. wrote: > > Package: wireguard-dkms > Version: 0.0.20200128-1 > Severity: normal
I'm in the same boat (almost). Also raspbian. Package: wireguard-dkms Version: 0.0.20200318-1~bpo10+1 I'd set the Severity: important, as the bug makes the package unusable for me. # uname -a Linux raspberrypi3 5.4.51-v7+ #1333 SMP Mon Aug 10 16:45:19 BST 2020 armv7l GNU/Linux I found a hack here: https://www.spinics.net/lists/linux-fsdevel/msg165431.html Applying it: --- /usr/src/wireguard-0.0.20200318/queueing.h.orig 2020-03-28 13:12:04.000000000 +0100 +++ /usr/src/wireguard-0.0.20200318/queueing.h 2020-09-14 11:56:12.063773807 +0200 @@ -103,7 +103,8 @@ skb->dev = NULL; #ifdef CONFIG_NET_SCHED skb->tc_index = 0; - skb_reset_tc(skb); + skb_reset_redirect(skb); #endif skb->hdr_len = skb_headroom(skb); skb_reset_mac_header(skb); makes it at least build clean. Did not yet test if it's actually usable, though. Cheers, -- Cristian