From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6221-0007zt-A8 for qemu-devel@nongnu.org; Mon, 27 Aug 2012 12:19:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T621x-000718-2l for qemu-devel@nongnu.org; Mon, 27 Aug 2012 12:19:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:6438) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T621w-00070v-Qp for qemu-devel@nongnu.org; Mon, 27 Aug 2012 12:19:12 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q7RGJArN003531 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 27 Aug 2012 12:19:11 -0400 From: =?UTF-8?q?S=C3=B8ren=20Sandmann?= Date: Mon, 27 Aug 2012 12:21:20 -0400 Message-Id: <1346084480-7994-1-git-send-email-sandmann@cs.au.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/2] spice: Change NUM_SURFACES to 4096 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kraxel@redhat.com, =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= From: S=C3=B8ren Sandmann Pedersen It's not uncommon for an X workload to have more than 1024 pixmaps live at the same time. Ideally, there wouldn't be any fixed limit like this, but since we have one, increase it to 4096. --- ui/spice-display.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ui/spice-display.h b/ui/spice-display.h index 12e50b6..e8d01a5 100644 --- a/ui/spice-display.h +++ b/ui/spice-display.h @@ -32,7 +32,7 @@ #define MEMSLOT_GROUP_GUEST 1 #define NUM_MEMSLOTS_GROUPS 2 =20 -#define NUM_SURFACES 1024 +#define NUM_SURFACES 4096 =20 /* * Internal enum to differenciate between options for --=20 1.7.4