Skip to content

Commit 16dc7d1

Browse files
authored
Merge pull request #13 from rust-osdev/VIRTIO_NET_F_CTRL_RX_EXTRA
feat(virtio-net): add `VIRTIO_NET_F_CTRL_RX_EXTRA`
2 parents 833ed04 + 8f2eec2 commit 16dc7d1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/features.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,10 @@ pub mod net {
402402
#[doc(alias = "VIRTIO_NET_F_CTRL_VLAN")]
403403
const CTRL_VLAN = 1 << 19;
404404

405+
/// Control channel RX extra mode support.
406+
#[doc(alias = "VIRTIO_NET_F_CTRL_RX_EXTRA")]
407+
const CTRL_RX_EXTRA = 1 << 20;
408+
405409
/// Driver can send gratuitous
406410
/// packets.
407411
#[doc(alias = "VIRTIO_NET_F_GUEST_ANNOUNCE")]

0 commit comments

Comments
 (0)