Re: [PATCH net-next v2 12/12] virtio_net: refactor the xmit type
From: "Michael S. Tsirkin" <mst@redhat.com>
Date: 2024-06-02 19:50:52
Also in:
bpf, netdev
From: "Michael S. Tsirkin" <mst@redhat.com>
Date: 2024-06-02 19:50:52
Also in:
bpf, netdev
On Thu, May 30, 2024 at 07:24:06PM +0800, Xuan Zhuo wrote:
+enum virtnet_xmit_type {
+ VIRTNET_XMIT_TYPE_SKB,
+ VIRTNET_XMIT_TYPE_XDP,
+};
+
+#define VIRTNET_XMIT_TYPE_MASK (VIRTNET_XMIT_TYPE_SKB | VIRTNET_XMIT_TYPE_XDP)No idea how this has any chance to work. Was this tested, even? -- MST