All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Alistair Francis <alistair.francis@xilinx.com>
Cc: qemu-devel@nongnu.org, alistair23@gmail.com, philippe@mathieu-daude.net
Subject: Re: [Qemu-devel] [PATCH v2 6/8] error: Implement the warn and free Error functions
Date: Mon, 10 Jul 2017 15:39:29 +0200	[thread overview]
Message-ID: <87pod81kdq.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <2ee8ce037e6db81c575a2d3ff1793754a243b5e2.1499453788.git.alistair.francis@xilinx.com> (Alistair Francis's message of "Fri, 7 Jul 2017 16:21:21 -0700")

Alistair Francis <alistair.francis@xilinx.com> writes:

> Implement warn_report_err() and warn_reportf_err() functions which
> are the same as the error_report_err() and error_reportf_err()
> functions except report a warning instead of an error.
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> ---
>
>  include/qapi/error.h  | 11 +++++++++++
>  scripts/checkpatch.pl |  1 +
>  util/error.c          | 19 +++++++++++++++++++
>  3 files changed, 31 insertions(+)
>
> diff --git a/include/qapi/error.h b/include/qapi/error.h
> index 7e532d00e9..af53b34410 100644
> --- a/include/qapi/error.h
> +++ b/include/qapi/error.h
> @@ -267,11 +267,22 @@ void error_free(Error *err);
>  void error_free_or_abort(Error **errp);
>  
>  /*
> + * Convenience function to warn_report() and free @err.
> + */
> +void warn_report_err(Error *err);
> +
> +/*
>   * Convenience function to error_report() and free @err.
>   */
>  void error_report_err(Error *err);
>  
>  /*
> + * Convenience function to error_prepend(), warn_report() and free @err.
> + */
> +void warn_reportf_err(Error *err, const char *fmt, ...)
> +    GCC_FMT_ATTR(2, 3);
> +
> +/*
>   * Convenience function to error_prepend(), error_report() and free @err.
>   */
>  void error_reportf_err(Error *err, const char *fmt, ...)
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index b76fe30ad3..8f5cbaa12e 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -2533,6 +2533,7 @@ sub process {
>  				error_setg_file_open|
>  				error_set|
>  				error_prepend|
> +				warn_reportf_err|
>  				error_reportf_err|
>  				error_report|
>  				warn_report|
> diff --git a/util/error.c b/util/error.c
> index 020b86b9f0..373566fb77 100644
> --- a/util/error.c
> +++ b/util/error.c
> @@ -223,6 +223,15 @@ const char *error_get_pretty(const Error *err)
>      return err->msg;
>  }
>  
> +void warn_report_err(Error *err)
> +{
> +    warn_report("%s", error_get_pretty(err));
> +    if (err->hint) {
> +        error_printf_unless_qmp("%s", err->hint->str);
> +    }
> +    error_free(err);
> +}
> +
>  void error_report_err(Error *err)
>  {
>      error_report("%s", error_get_pretty(err));
> @@ -232,6 +241,16 @@ void error_report_err(Error *err)
>      error_free(err);
>  }
>  
> +void warn_reportf_err(Error *err, const char *fmt, ...)
> +{
> +    va_list ap;
> +
> +    va_start(ap, fmt);
> +    error_vprepend(&err, fmt, ap);
> +    va_end(ap);
> +    warn_report_err(err);
> +}
> +
>  void error_reportf_err(Error *err, const char *fmt, ...)
>  {
>      va_list ap;

Everywhere else, you put error before warning before info.  Let's do it
here, too.

Reviewed-by: Markus Armbruster <armbru@redhat.com>

  reply	other threads:[~2017-07-10 13:39 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-07 23:20 [Qemu-devel] [PATCH v2 0/8] Implement a warning_report function Alistair Francis
2017-07-07 23:20 ` [Qemu-devel] [PATCH v2 1/8] util/qemu-error: Rename error_print_loc() to be more generic Alistair Francis
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 2/8] error: Functions to report warnings and informational messages Alistair Francis
2017-07-10 12:56   ` Markus Armbruster
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 3/8] Convert error_report() to warn_report() Alistair Francis
2017-07-07 23:35   ` Peter.Chubb
2017-07-09 18:30   ` Max Reitz
2017-07-10 13:24   ` Markus Armbruster
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 4/8] hw/i386: Improve some of the warning messages Alistair Francis
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 5/8] char-socket: Report TCP socket waiting as information Alistair Francis
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 6/8] error: Implement the warn and free Error functions Alistair Francis
2017-07-10 13:39   ` Markus Armbruster [this message]
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 7/8] Convert error_report*_err() to warn_report*_err() Alistair Francis
2017-07-10 13:43   ` Markus Armbruster
2017-07-07 23:21 ` [Qemu-devel] [PATCH v2 8/8] error: Add a 'error: ' prefix to error_report() Alistair Francis
2017-07-08  4:36   ` Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87pod81kdq.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=alistair.francis@xilinx.com \
    --cc=alistair23@gmail.com \
    --cc=philippe@mathieu-daude.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.