feat(virtio): enable ACCESS_PLATFORM bits

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
Changyuan Lyu 2024-05-22 16:38:15 -07:00 committed by Lencerf
parent 04f01b350e
commit 5ad2ea658c

View file

@ -51,8 +51,9 @@ bitflags! {
const INDIRECT_DESC = 1 << 28;
const EVENT_IDX = 1 << 29;
const VERSION_1 = 1 << 32;
const ACCESS_PLATFORM = 1 << 33;
const RING_PACKED = 1 << 34;
const SUPPORTED = Self::VERSION_1.bits();
const SUPPORTED = Self::VERSION_1.bits() | Self::ACCESS_PLATFORM.bits();
}
}