qemu-devel
[Top][All Lists]
Advanced

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

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


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 01/14] qerror: extend QERR_TOO_MANY_FILES
Date: Thu, 31 May 2012 12:43:24 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1

Il 30/05/2012 16:14, Luiz Capitulino ha scritto:
> 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.

Let's kill it then. :)

Are there any others?

Paolo

> 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': {} }"




reply via email to

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