Skip to content

Commit

Permalink
kvm: handle unimplemented intercepts in match arm
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenzel committed Dec 20, 2020
1 parent 1cf4f56 commit 8d0dcae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/driver/kvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@ impl<T: KVMIntrospectable> Introspectable for Kvm<T> {
.kvmi
.control_events(vcpu, KVMiInterceptType::Pagefault, enabled)?)
}
_ => {
unimplemented!()
}
}
}

Expand Down

0 comments on commit 8d0dcae

Please sign in to comment.