The branch main has been updated by pouria:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=d4ddf8eaee9371d1d20bfb753237f25505d6afee

commit d4ddf8eaee9371d1d20bfb753237f25505d6afee
Author:     Faraz Vahedi <[email protected]>
AuthorDate: 2026-07-12 21:09:06 +0000
Commit:     Pouria Mousavizadeh Tehrani <[email protected]>
CommitDate: 2026-07-21 20:06:37 +0000

    vtnet: Accept VIRTIO_NET_F_CTRL_RX_EXTRA
    
    Although the driver does not issue the extra receive-mode commands
    accepting the feature is harmless and some devices, notably Apple's
    Virtualization.framework, offer their control-queue features as a
    group and refuse FEATURES_OK unless the whole set is acknowledged.
    
    Signed-off-by:  Faraz Vahedi <[email protected]>
    Reviewed by:    adrian
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/2322
---
 sys/dev/virtio/network/if_vtnetvar.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/dev/virtio/network/if_vtnetvar.h 
b/sys/dev/virtio/network/if_vtnetvar.h
index 904050c7864a..d5313c9af3cc 100644
--- a/sys/dev/virtio/network/if_vtnetvar.h
+++ b/sys/dev/virtio/network/if_vtnetvar.h
@@ -337,6 +337,7 @@ CTASSERT(sizeof(struct vtnet_mac_filter) <= PAGE_SIZE);
      VIRTIO_NET_F_MTU                  | \
      VIRTIO_NET_F_CTRL_VQ              | \
      VIRTIO_NET_F_CTRL_RX              | \
+     VIRTIO_NET_F_CTRL_RX_EXTRA                | \
      VIRTIO_NET_F_CTRL_MAC_ADDR                | \
      VIRTIO_NET_F_CTRL_VLAN            | \
      VIRTIO_NET_F_GUEST_ANNOUNCE       | \

Reply via email to