mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
c93c5365c0
Pick patches with several fixes and improvements, preparation for upcoming WED (TX) [1] as well as basic XDP support [2] with MediaTek's Filogic SoCs to the mtk_eth_soc driver. Also pick follow-up patch fixing Ethernet on MT7621 [3]. Tested on Bananapi BPi-R3 (MT7986), Bananapi BPi-R64 (MT7622), Bananapi BPi-R2 (MT7623), MikroTik RouterBoard M11G (MT7621). [1]: https://patchwork.kernel.org/project/netdevbpf/list/?series=662108&state=* [2]: https://patchwork.kernel.org/project/netdevbpf/list/?series=675368&state=* (the first part of the series adding wed nodes to mt7986a.dtsi was applied to the copy of mt7986a.dtsi in our tree) [3]: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=5e69163d3b9931098922b3fc2f8e786af8c1f37e Signed-off-by: Daniel Golle <daniel@makrotopia.org>
63 lines
2.2 KiB
Diff
63 lines
2.2 KiB
Diff
commit 5142239a22219921a7863cf00c9ab853c00689d8
|
|
Author: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Date: Fri Mar 11 10:14:18 2022 +0100
|
|
|
|
net: veth: Account total xdp_frame len running ndo_xdp_xmit
|
|
|
|
Even if this is a theoretical issue since it is not possible to perform
|
|
XDP_REDIRECT on a non-linear xdp_frame, veth driver does not account
|
|
paged area in ndo_xdp_xmit function pointer.
|
|
Introduce xdp_get_frame_len utility routine to get the xdp_frame full
|
|
length and account total frame size running XDP_REDIRECT of a
|
|
non-linear xdp frame into a veth device.
|
|
|
|
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
|
|
Acked-by: Toke Hoiland-Jorgensen <toke@redhat.com>
|
|
Acked-by: John Fastabend <john.fastabend@gmail.com>
|
|
Link: https://lore.kernel.org/bpf/54f9fd3bb65d190daf2c0bbae2f852ff16cfbaa0.1646989407.git.lorenzo@kernel.org
|
|
|
|
--- a/drivers/net/veth.c
|
|
+++ b/drivers/net/veth.c
|
|
@@ -501,7 +501,7 @@ static int veth_xdp_xmit(struct net_devi
|
|
struct xdp_frame *frame = frames[i];
|
|
void *ptr = veth_xdp_to_ptr(frame);
|
|
|
|
- if (unlikely(frame->len > max_len ||
|
|
+ if (unlikely(xdp_get_frame_len(frame) > max_len ||
|
|
__ptr_ring_produce(&rq->xdp_ring, ptr)))
|
|
break;
|
|
nxmit++;
|
|
@@ -862,7 +862,7 @@ static int veth_xdp_rcv(struct veth_rq *
|
|
/* ndo_xdp_xmit */
|
|
struct xdp_frame *frame = veth_ptr_to_xdp(ptr);
|
|
|
|
- stats->xdp_bytes += frame->len;
|
|
+ stats->xdp_bytes += xdp_get_frame_len(frame);
|
|
frame = veth_xdp_rcv_one(rq, frame, bq, stats);
|
|
if (frame) {
|
|
/* XDP_PASS */
|
|
--- a/include/net/xdp.h
|
|
+++ b/include/net/xdp.h
|
|
@@ -295,6 +295,20 @@ out:
|
|
__xdp_release_frame(xdpf->data, mem);
|
|
}
|
|
|
|
+static __always_inline unsigned int xdp_get_frame_len(struct xdp_frame *xdpf)
|
|
+{
|
|
+ struct skb_shared_info *sinfo;
|
|
+ unsigned int len = xdpf->len;
|
|
+
|
|
+ if (likely(!xdp_frame_has_frags(xdpf)))
|
|
+ goto out;
|
|
+
|
|
+ sinfo = xdp_get_shared_info_from_frame(xdpf);
|
|
+ len += sinfo->xdp_frags_size;
|
|
+out:
|
|
+ return len;
|
|
+}
|
|
+
|
|
int xdp_rxq_info_reg(struct xdp_rxq_info *xdp_rxq,
|
|
struct net_device *dev, u32 queue_index, unsigned int napi_id);
|
|
void xdp_rxq_info_unreg(struct xdp_rxq_info *xdp_rxq);
|