From d8119fda136f738b698828c0eff18cdd4381e757 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 3 Apr 2020 10:27:04 +0100 Subject: [PATCH] vmm: config: Remove unused error entries These entries are not currently used. Signed-off-by: Rob Bradford --- vmm/src/config.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vmm/src/config.rs b/vmm/src/config.rs index 1ab9c6387..434bb6dd6 100644 --- a/vmm/src/config.rs +++ b/vmm/src/config.rs @@ -27,10 +27,6 @@ pub const DEFAULT_QUEUE_SIZE_VUBLK: u16 = 128; pub enum Error { /// Max is less than boot ParseCpusMaxLowerThanBoot, - /// Failed parsing kernel parameters. - ParseKernelParams, - /// Failed parsing kernel command line parameters. - ParseCmdlineParams, /// Both socket and path specified ParseDiskSocketAndPath, /// Filesystem tag is missing @@ -49,8 +45,6 @@ pub enum Error { ParseVsockSockMissing, /// Missing vsock cid parameter. ParseVsockCidMissing, - /// Missing kernel configuration - ValidateMissingKernelConfig, /// Error parsing CPU options ParseCpus(OptionParserError), /// Error parsing memory options