From nobody Tue Feb 10 14:33:22 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 1541587890954712.3085430161237; Wed, 7 Nov 2018 02:51:30 -0800 (PST) Received: from localhost ([::1]:47120 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKLQV-0003f1-HF for importer@patchew.org; Wed, 07 Nov 2018 05:51:11 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35886) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKLP6-00030Z-7e for qemu-devel@nongnu.org; Wed, 07 Nov 2018 05:49:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKLOz-0001TM-M1 for qemu-devel@nongnu.org; Wed, 07 Nov 2018 05:49:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45554) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gKLOx-0000dl-H7 for qemu-devel@nongnu.org; Wed, 07 Nov 2018 05:49:37 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BACC5A70A; Wed, 7 Nov 2018 10:49:30 +0000 (UTC) Received: from diego.redhat.com (unknown [10.40.205.109]) by smtp.corp.redhat.com (Postfix) with ESMTP id A34D360BEE; Wed, 7 Nov 2018 10:49:28 +0000 (UTC) From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hr=C3=A1zk=C3=BD?= To: spice-devel@lists.freedesktop.org, qemu-devel@nongnu.org Date: Wed, 7 Nov 2018 11:49:20 +0100 Message-Id: <20181107104921.20536-3-lhrazky@redhat.com> In-Reply-To: <20181107104921.20536-1-lhrazky@redhat.com> References: <20181107104921.20536-1-lhrazky@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Wed, 07 Nov 2018 10:49:30 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [RFC PATCH spice v3 2/3] QXL interface: deprecate spice_qxl_set_max_monitors X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kraxel@redhat.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Replace it by spice_qxl_set_device_info. Note we can't use monitors_count for what's stored in max_monitors, because monitors_count denotes the length of the device_display_ids array, which spice_qxl_set_max_monitors doesn't touch. Signed-off-by: Luk=C3=A1=C5=A1 Hr=C3=A1zk=C3=BD --- server/red-qxl.c | 1 + server/spice-qxl.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/server/red-qxl.c b/server/red-qxl.c index 0ea424cd..6ffd8286 100644 --- a/server/red-qxl.c +++ b/server/red-qxl.c @@ -888,6 +888,7 @@ void spice_qxl_set_device_info(QXLInstance *instance, } =20 instance->st->monitors_count =3D device_display_id_count; + instance->st->max_monitors =3D device_display_id_count; } =20 void red_qxl_init(RedsState *reds, QXLInstance *qxl) diff --git a/server/spice-qxl.h b/server/spice-qxl.h index 547d3d93..e7af5e5e 100644 --- a/server/spice-qxl.h +++ b/server/spice-qxl.h @@ -101,9 +101,9 @@ void spice_qxl_monitors_config_async(QXLInstance *insta= nce, QXLPHYSICAL monitors int group_id, uint64_t cookie); /* since spice 0.12.3 */ void spice_qxl_driver_unload(QXLInstance *instance); -/* since spice 0.12.6 */ +/* since spice 0.12.6, deprecated since 0.14.2, spice_qxl_set_device_info = replaces it */ void spice_qxl_set_max_monitors(QXLInstance *instance, - unsigned int max_monitors); + unsigned int max_monitors) SPICE_GNUC_DEPR= ECATED; /* since spice 0.13.1 */ void spice_qxl_gl_scanout(QXLInstance *instance, int fd, --=20 2.19.1