]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qerror.c
qom: add vga node to the pc composition tree
[mirror_qemu.git] / qerror.c
index 935d30f62aa8d4f4e6e27e428f8c2d5204638c98..adde8a5859a3a429a07d84a731c9362cc7a1c75c 100644 (file)
--- a/qerror.c
+++ b/qerror.c
@@ -64,6 +64,10 @@ static const QErrorStringTable qerror_table[] = {
         .error_fmt = QERR_COMMAND_NOT_FOUND,
         .desc      = "The command %(name) has not been found",
     },
+    {
+        .error_fmt = QERR_COMMAND_DISABLED,
+        .desc      = "The command %(name) has been disabled for this instance",
+    },
     {
         .error_fmt = QERR_DEVICE_ENCRYPTED,
         .desc      = "Device '%(device)' is encrypted",
@@ -148,6 +152,10 @@ static const QErrorStringTable qerror_table[] = {
         .error_fmt = QERR_INVALID_PASSWORD,
         .desc      = "Password incorrect",
     },
+    {
+        .error_fmt = QERR_IO_ERROR,
+        .desc      = "An IO error has occurred",
+    },
     {
         .error_fmt = QERR_JSON_PARSING,
         .desc      = "Invalid JSON syntax",
@@ -177,6 +185,10 @@ static const QErrorStringTable qerror_table[] = {
         .error_fmt = QERR_OPEN_FILE_FAILED,
         .desc      = "Could not open '%(filename)'",
     },
+    {
+        .error_fmt = QERR_PERMISSION_DENIED,
+        .desc      = "Insufficient permission to perform this operation",
+    },
     {
         .error_fmt = QERR_PROPERTY_NOT_FOUND,
         .desc      = "Property '%(device).%(property)' not found",
@@ -251,6 +263,10 @@ static const QErrorStringTable qerror_table[] = {
         .error_fmt = QERR_QGA_COMMAND_FAILED,
         .desc      = "Guest agent command failed, error was '%(message)'",
     },
+    {
+        .error_fmt = QERR_INVALID_PARAMETER_COMBINATION,
+        .desc      = "Invalid parameter combination",
+    },
     {}
 };