From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1esn11-0004a1-1E for qemu-devel@nongnu.org; Mon, 05 Mar 2018 05:06:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1esn0x-0003rA-RZ for qemu-devel@nongnu.org; Mon, 05 Mar 2018 05:06:43 -0500 Date: Mon, 5 Mar 2018 11:06:13 +0100 From: Cornelia Huck Message-ID: <20180305110613.2c62b2ab.cohuck@redhat.com> In-Reply-To: <20180215042900.16078-12-f4bug@amsat.org> References: <20180215042900.16078-1-f4bug@amsat.org> <20180215042900.16078-12-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 11/30] hw/s390x: use the BYTE-based definitions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Philippe =?UTF-8?B?TWF0aGlldS1EYXVkw6k=?= Cc: qemu-devel@nongnu.org, Richard Henderson , Alexander Graf , David Hildenbrand , Christian Borntraeger , "open list:S390" On Thu, 15 Feb 2018 01:28:41 -0300 Philippe Mathieu-Daud=C3=A9 wrote: > It ease code review, unit is explicit. s/ease/eases/ >=20 > Signed-off-by: Philippe Mathieu-Daud=C3=A9 > --- > hw/s390x/sclp.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/hw/s390x/sclp.c b/hw/s390x/sclp.c > index 276972b59f..8537aa2688 100644 > --- a/hw/s390x/sclp.c > +++ b/hw/s390x/sclp.c > @@ -526,8 +526,8 @@ static void sclp_realize(DeviceState *dev, Error **er= rp) > =20 > ret =3D s390_set_memory_limit(machine->maxram_size, &hw_limit); > if (ret =3D=3D -E2BIG) { > - error_setg(&err, "host supports a maximum of %" PRIu64 " GB", > - hw_limit >> 30); > + error_setg(&err, "host supports a maximum of %llu GB", > + hw_limit / G_BYTE); > } else if (ret) { > error_setg(&err, "setting the guest size failed"); > } Acked-by: Cornelia Huck