We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e9f23 commit 0ce06deCopy full SHA for 0ce06de
virtio-queue/src/queue/verification.rs
@@ -571,8 +571,10 @@ fn get_used_idx(
571
/// if the descriptor index is out of bounds, the operation must fail and the
572
/// used index must not be incremented. Note that this proof does not verify
573
/// Section 2.7.8.2: "Device Requirements: The Virtqueue Used Ring"
574
-#[kani::proof]
575
-#[kani::unwind(0)]
+// Re-enable this proof once https://github.com/rust-vmm/vm-virtio/issues/373
+// is fixed.
576
+// #[kani::proof]
577
+// #[kani::unwind(0)]
578
fn verify_add_used() {
579
let ProofContext { mut queue, memory } = kani::any();
580
let used_idx = queue.next_used;
0 commit comments