From: Thomas Huth <thuth@redhat.com>
To: Collin Walling <walling@linux.ibm.com>,
qemu-devel@nongnu.org, qemu-s390x@nongnu.org, cohuck@redhat.com,
borntraeger@de.ibm.com
Cc: gor@linux.ibm.com, frankja@linux.ibm.com
Subject: Re: [Qemu-devel] [PATCH 2/4] pc-bios/s390-ccw: fix loadparm initialization and int conversion
Date: Thu, 12 Apr 2018 20:57:25 +0200 [thread overview]
Message-ID: <107962d1-87b5-2574-92a3-a6625757f9e7@redhat.com> (raw)
In-Reply-To: <1523372486-13190-3-git-send-email-walling@linux.ibm.com>
On 10.04.2018 17:01, Collin Walling wrote:
> Rename the loadparm char array in main.c to loadparm_str and
> increase the size by one byte to account for a null termination
> when converting the loadparm string to an int via atoui. Also
> allow the boot menu to be enabled when loadparm is set to an
> empty string or a series of spaces.
>
> Signed-off-by: Collin Walling <walling@linux.ibm.com>
> Reported-by: Vasily Gorbik <gor@linux.ibm.com>
> ---
> hw/s390x/ipl.c | 2 ++
> pc-bios/s390-ccw/main.c | 14 +++++++-------
> 2 files changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
> index fdeaec3..23b5b54 100644
> --- a/hw/s390x/ipl.c
> +++ b/hw/s390x/ipl.c
> @@ -352,6 +352,8 @@ int s390_ipl_set_loadparm(uint8_t *loadparm)
> loadparm[i] = ascii2ebcdic[(uint8_t) lp[i]];
> }
>
> + memset(loadparm + i, 0x40, 8 - i); /* fill with EBCDIC spaces */
> +
> g_free(lp);
> return 0;
> }
> diff --git a/pc-bios/s390-ccw/main.c b/pc-bios/s390-ccw/main.c
> index 9d9f8cf..26f9adf 100644
> --- a/pc-bios/s390-ccw/main.c
> +++ b/pc-bios/s390-ccw/main.c
> @@ -15,11 +15,11 @@
> char stack[PAGE_SIZE * 8] __attribute__((__aligned__(PAGE_SIZE)));
> static SubChannelId blk_schid = { .one = 1 };
> IplParameterBlock iplb __attribute__((__aligned__(PAGE_SIZE)));
> -static char loadparm[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
> +static char loadparm_str[9] = { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
> QemuIplParameters qipl;
>
> #define LOADPARM_PROMPT "PROMPT "
> -#define LOADPARM_EMPTY "........"
> +#define LOADPARM_EMPTY " "
Sorry for my ignorance, but why was the old string containing dots?
Thomas
next prev parent reply other threads:[~2018-04-12 18:57 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-10 15:01 [Qemu-devel] [PATCH 0/4] Small fixes for s390x QEMU boot menu Collin Walling
2018-04-10 15:01 ` [Qemu-devel] [PATCH 1/4] pc-bios/s390-ccw: rename MAX_TABLE_ENTRIES to MAX_BOOT_ENTRIES Collin Walling
2018-04-12 18:34 ` Thomas Huth
2018-04-10 15:01 ` [Qemu-devel] [PATCH 2/4] pc-bios/s390-ccw: fix loadparm initialization and int conversion Collin Walling
2018-04-12 18:57 ` Thomas Huth [this message]
2018-04-12 20:57 ` Collin Walling
2018-04-12 21:04 ` Farhan Ali
2018-04-13 4:11 ` Thomas Huth
2018-04-10 15:01 ` [Qemu-devel] [PATCH 3/4] pc-bios/s390-ccw: fix non-sequential boot entries (eckd) Collin Walling
2018-04-13 6:14 ` Thomas Huth
2018-04-13 14:56 ` [Qemu-devel] [qemu-s390x] " Collin Walling
2018-04-10 15:01 ` [Qemu-devel] [PATCH 4/4] pc-bios/s390-ccw: fix non-sequential boot entries (enum) Collin Walling
2018-04-13 7:55 ` Thomas Huth
-- strict thread matches above, loose matches on Subject: below --
2018-04-13 22:08 [Qemu-devel] [PATCH v2 0/4] Small fixes for s390x QEMU boot menu Collin Walling
2018-04-13 22:08 ` [Qemu-devel] [PATCH 2/4] pc-bios/s390-ccw: fix loadparm initialization and int conversion Collin Walling
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=107962d1-87b5-2574-92a3-a6625757f9e7@redhat.com \
--to=thuth@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cohuck@redhat.com \
--cc=frankja@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=walling@linux.ibm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).