All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: Sergio Lopez <slp@redhat.com>
Cc: "Eduardo Habkost" <ehabkost@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	groug@kaod.org, QEMU <qemu-devel@nongnu.org>,
	"Gerd Hoffmann" <kraxel@redhat.com>,
	"Igor Mammedov" <imammedo@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Richard Henderson" <rth@twiddle.net>,
	"Laszlo Ersek" <lersek@redhat.com>,
	"Stefano Garzarella" <sgarzare@redhat.com>
Subject: Re: [PATCH v10 04/15] hw/i386/pc: replace use of strtol with qemu_strtoui in x86_load_linux()
Date: Wed, 16 Oct 2019 17:02:21 +0200	[thread overview]
Message-ID: <CAJ+F1CL_L50iaTxrxJqThzTP8RRfE6GqLGkx_Dj+4yahnPWdwg@mail.gmail.com> (raw)
In-Reply-To: <20191016101241.24405-5-slp@redhat.com>

On Wed, Oct 16, 2019 at 12:16 PM Sergio Lopez <slp@redhat.com> wrote:
>
> Follow checkpatch.pl recommendation and replace the use of strtol with
> qemu_strtoui in x86_load_linux().
>
> Signed-off-by: Sergio Lopez <slp@redhat.com>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>


> ---
>  hw/i386/pc.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/hw/i386/pc.c b/hw/i386/pc.c
> index 77e86bfc3d..c8608b8007 100644
> --- a/hw/i386/pc.c
> +++ b/hw/i386/pc.c
> @@ -68,6 +68,7 @@
>  #include "qemu/config-file.h"
>  #include "qemu/error-report.h"
>  #include "qemu/option.h"
> +#include "qemu/cutils.h"
>  #include "hw/acpi/acpi.h"
>  #include "hw/acpi/cpu_hotplug.h"
>  #include "hw/boards.h"
> @@ -1202,6 +1203,7 @@ static void x86_load_linux(PCMachineState *pcms,
>      vmode = strstr(kernel_cmdline, "vga=");
>      if (vmode) {
>          unsigned int video_mode;
> +        int ret;
>          /* skip "vga=" */
>          vmode += 4;
>          if (!strncmp(vmode, "normal", 6)) {
> @@ -1211,7 +1213,12 @@ static void x86_load_linux(PCMachineState *pcms,
>          } else if (!strncmp(vmode, "ask", 3)) {
>              video_mode = 0xfffd;
>          } else {
> -            video_mode = strtol(vmode, NULL, 0);
> +            ret = qemu_strtoui(vmode, NULL, 0, &video_mode);
> +            if (ret != 0) {
> +                fprintf(stderr, "qemu: can't parse 'vga' parameter: %s\n",
> +                        strerror(-ret));
> +                exit(1);
> +            }
>          }
>          stw_p(header + 0x1fa, video_mode);
>      }
> --
> 2.21.0
>
>


--
Marc-André Lureau


  reply	other threads:[~2019-10-16 15:04 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-16 10:12 [PATCH v10 00/15] Introduce the microvm machine type Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 01/15] hw/virtio: Factorize virtio-mmio headers Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 02/15] hw/i386/pc: rename functions shared with non-PC machines Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 03/15] hw/i386/pc: fix code style issues on functions that will be moved out Sergio Lopez
2019-10-16 14:59   ` Marc-André Lureau
2019-10-16 10:12 ` [PATCH v10 04/15] hw/i386/pc: replace use of strtol with qemu_strtoui in x86_load_linux() Sergio Lopez
2019-10-16 15:02   ` Marc-André Lureau [this message]
2019-10-16 10:12 ` [PATCH v10 05/15] hw/i386/pc: avoid an assignment in if condition " Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 06/15] hw/i386/pc: remove commented out code from x86_load_linux() Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 07/15] hw/i386/pc: move shared x86 functions to x86.c and export them Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 08/15] hw/i386: split PCMachineState deriving X86MachineState from it Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 09/15] hw/i386: make x86.c independent from PCMachineState Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 10/15] fw_cfg: add "modify" functions for all types Sergio Lopez
2019-10-16 15:02   ` Marc-André Lureau
2019-10-16 10:12 ` [PATCH v10 11/15] hw/intc/apic: reject pic ints if isa_pic == NULL Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 12/15] roms: add microvm-bios (qboot) as binary and git submodule Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 13/15] docs/microvm.rst: document the new microvm machine type Sergio Lopez
2019-10-16 16:31   ` Marc-André Lureau
2019-10-17  6:48     ` Sergio Lopez
2019-10-17  9:52   ` Philippe Mathieu-Daudé
2019-10-17 10:45     ` Sergio Lopez
2019-10-17 10:56       ` Philippe Mathieu-Daudé
2019-10-17 11:52         ` Sergio Lopez
2019-10-17 11:00   ` Daniel P. Berrangé
2019-10-17 11:49     ` Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 14/15] hw/i386: Introduce the " Sergio Lopez
2019-10-16 19:35   ` Marc-André Lureau
2019-10-17  6:47     ` Sergio Lopez
2019-10-16 10:12 ` [PATCH v10 15/15] MAINTAINERS: add microvm related files Sergio Lopez

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=CAJ+F1CL_L50iaTxrxJqThzTP8RRfE6GqLGkx_Dj+4yahnPWdwg@mail.gmail.com \
    --to=marcandre.lureau@gmail.com \
    --cc=ehabkost@redhat.com \
    --cc=groug@kaod.org \
    --cc=imammedo@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=lersek@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=sgarzare@redhat.com \
    --cc=slp@redhat.com \
    /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.