Explicitly ignore field of PageQueueEntry::Other

This fixes a warning
This commit is contained in:
bjorn3
2026-03-28 23:28:32 +01:00
parent b5603422be
commit f5aff74fc9
+12 -8
View File
@@ -2886,14 +2886,18 @@ impl<'a, 'addrsp> Flusher<'a, 'addrsp> {
}
for entry in pages {
let PageQueueEntry::Free {
base,
phys_contiguous_count,
} = entry
else {
continue;
};
handle_free_action(base, phys_contiguous_count);
match entry {
PageQueueEntry::Free {
base,
phys_contiguous_count,
} => {
handle_free_action(base, phys_contiguous_count);
}
PageQueueEntry::Other { actions } => {
// We currently invalidate everything on each flush
let _ = actions;
}
}
}
}
}