mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-04 05:31:32 +00:00
fix(power): ensure that xeon cpus with cpu gaps are not detected as p/e compatible (#218)
This commit is contained in:
@ -9,7 +9,7 @@ use krata::{
|
||||
idm::{internal::event::Event as EventType, internal::Event},
|
||||
v1::common::{GuestExitInfo, GuestState, GuestStatus},
|
||||
};
|
||||
use log::{error, info, warn};
|
||||
use log::{error, warn};
|
||||
use tokio::{
|
||||
select,
|
||||
sync::{
|
||||
@ -90,7 +90,6 @@ impl DaemonEventGenerator {
|
||||
let status = state.status();
|
||||
let id = Uuid::from_str(&guest.id)?;
|
||||
let domid = state.domid;
|
||||
info!("Guest {} on Zone {} changed - {:?}", id, domid, status);
|
||||
match status {
|
||||
GuestStatus::Started => {
|
||||
if let Entry::Vacant(e) = self.idms.entry(domid) {
|
||||
|
Reference in New Issue
Block a user