qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 01/14] qerror: extend QERR_TOO_MANY_FILES


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 01/14] qerror: extend QERR_TOO_MANY_FILES
Date: Wed, 30 May 2012 11:14:48 -0300

Specify it's too many open files in system (ENFILE).

There's no compatibility issue because QERR_TOO_MANY_FILES is actually
not used today.

Signed-off-by: Luiz Capitulino <address@hidden>
---
 qerror.c | 4 ++--
 qerror.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/qerror.c b/qerror.c
index 92c4eff..6c78759 100644
--- a/qerror.c
+++ b/qerror.c
@@ -283,8 +283,8 @@ static const QErrorStringTable qerror_table[] = {
         .desc      = "Could not set password",
     },
     {
-        .error_fmt = QERR_TOO_MANY_FILES,
-        .desc      = "Too many open files",
+        .error_fmt = QERR_TOO_MANY_FILES_SYS,
+        .desc      = "Too many open files in system",
     },
     {
         .error_fmt = QERR_UNDEFINED_ERROR,
diff --git a/qerror.h b/qerror.h
index b4c8758..fb7c642 100644
--- a/qerror.h
+++ b/qerror.h
@@ -233,8 +233,8 @@ QError *qobject_to_qerror(const QObject *obj);
 #define QERR_SET_PASSWD_FAILED \
     "{ 'class': 'SetPasswdFailed', 'data': {} }"
 
-#define QERR_TOO_MANY_FILES \
-    "{ 'class': 'TooManyFiles', 'data': {} }"
+#define QERR_TOO_MANY_FILES_SYS \
+    "{ 'class': 'TooManyFilesInSystem', 'data': {} }"
 
 #define QERR_UNDEFINED_ERROR \
     "{ 'class': 'UndefinedError', 'data': {} }"
-- 
1.7.10.2.565.gbd578b5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]