vmm: fix clippy warnings

Signed-off-by: Praveen Paladugu <prapal@microsoft.com>
This commit is contained in:
Praveen Paladugu 2020-09-24 21:16:38 +00:00 committed by Rob Bradford
parent 4b32252028
commit f10872e706

View File

@ -52,7 +52,7 @@ const HOTPLUG_COUNT: usize = 8;
// Memory policy constants // Memory policy constants
const MPOL_BIND: u32 = 2; const MPOL_BIND: u32 = 2;
const MPOL_MF_STRICT: u32 = 1 << 0; const MPOL_MF_STRICT: u32 = 1;
const MPOL_MF_MOVE: u32 = 1 << 1; const MPOL_MF_MOVE: u32 = 1 << 1;
#[derive(Default)] #[derive(Default)]