From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SdzGl-0006Jy-KZ for qemu-devel@nongnu.org; Mon, 11 Jun 2012 03:42:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SdzGj-0003GU-QJ for qemu-devel@nongnu.org; Mon, 11 Jun 2012 03:42:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9679) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SdzGj-0003GO-Hi for qemu-devel@nongnu.org; Mon, 11 Jun 2012 03:42:33 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q5B7gUgP023307 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 11 Jun 2012 03:42:30 -0400 Message-ID: <4FD5A164.6060403@redhat.com> Date: Mon, 11 Jun 2012 09:42:28 +0200 From: Gerd Hoffmann MIME-Version: 1.0 References: <1339395841-31413-1-git-send-email-alevy@redhat.com> <1339395841-31413-2-git-send-email-alevy@redhat.com> In-Reply-To: <1339395841-31413-2-git-send-email-alevy@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/3] qxl: add fb_size_mb and fb_size List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alon Levy Cc: qemu-devel@nongnu.org Hi, > + if (d->fb_size < fb) { > + d->fb_size = fb; > + } > + if (fb <= d->fb_size) { This check doesn't make sense, it will always be true. > + if (qxl->fb_size_mb != -1 && > + qxl->fb_size_mb * 1024 * 1024 < qxl->vga.vram_size) { > + qxl->fb_size = qxl->fb_size_mb * 1024 * 1024; > + } else { > + qxl->fb_size = VGA_RAM_SIZE; > + } Reminds me that I have some pending work to make vga ram size configurable which I should finish and repost ... Current state pushed to http://www.kraxel.org/cgit/qemu/log/?h=vga.1 It probably makes sense to base this on top. > + DEFINE_PROP_UINT32("fb_size_mb", PCIQXLDevice, fb_size_mb, -1), Maybe also rename this to vgamem_mb for consistency with standard vga. cheers, Gerd