From nobody Mon Feb 9 09:33:35 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.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 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1549280494889786.9368870018022; Mon, 4 Feb 2019 03:41:34 -0800 (PST) Received: from localhost ([127.0.0.1]:41101 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqcci-00060E-TM for importer@patchew.org; Mon, 04 Feb 2019 06:41:12 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqcQh-0006Au-Jt for qemu-devel@nongnu.org; Mon, 04 Feb 2019 06:28:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqcQf-0007MM-Vk for qemu-devel@nongnu.org; Mon, 04 Feb 2019 06:28:47 -0500 Received: from smtp03.citrix.com ([162.221.156.55]:14928) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gqcQb-00076s-Ve for qemu-devel@nongnu.org; Mon, 04 Feb 2019 06:28:45 -0500 X-IronPort-AV: E=Sophos;i="5.56,560,1539648000"; d="scan'208";a="77210717" From: Anthony PERARD To: Date: Mon, 4 Feb 2019 11:28:00 +0000 Message-ID: <20190204112803.11645-2-anthony.perard@citrix.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190204112803.11645-1-anthony.perard@citrix.com> References: <20190204112803.11645-1-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 162.221.156.55 Subject: [Qemu-devel] [PULL 1/4] configure: xen: Stop build-testing for xc_domain_create 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: Anthony PERARD , xen-devel@lists.xenproject.org, Peter Maydell Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Its last uses was removed by: 6d7c06c213ddcfabcafdc178ccef81736f85a7c2 "Remove broken Xen PV domain builder". Signed-off-by: Anthony PERARD Reviewed-by: Paul Durrant --- configure | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/configure b/configure index f8176b3c40..ca1986125d 100755 --- a/configure +++ b/configure @@ -2474,7 +2474,6 @@ int main(void) { xenforeignmemory_handle *xfmem; xenevtchn_handle *xe; xengnttab_handle *xg; - xen_domain_handle_t handle; xengnttab_grant_copy_segment_t* seg =3D NULL; =20 xs_daemon_open(); @@ -2484,7 +2483,6 @@ int main(void) { xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); - xc_domain_create(xc, 0, handle, 0, NULL, NULL); =20 xfmem =3D xenforeignmemory_open(0, 0); xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); @@ -2526,7 +2524,6 @@ int main(void) { xenforeignmemory_handle *xfmem; xenevtchn_handle *xe; xengnttab_handle *xg; - xen_domain_handle_t handle; =20 xs_daemon_open(); =20 @@ -2535,7 +2532,6 @@ int main(void) { xc_domain_add_to_physmap(0, 0, XENMAPSPACE_gmfn, 0, 0); xc_hvm_inject_msi(xc, 0, 0xf0000000, 0x00000000); xc_hvm_create_ioreq_server(xc, 0, HVM_IOREQSRV_BUFIOREQ_ATOMIC, NULL); - xc_domain_create(xc, 0, handle, 0, NULL, NULL); =20 xfmem =3D xenforeignmemory_open(0, 0); xenforeignmemory_map(xfmem, 0, 0, 0, 0, 0); @@ -2553,21 +2549,6 @@ EOF then xen_ctrl_version=3D40701 xen=3Dyes - elif - cat > $TMPC < -#include -int main(void) { - xc_interface *xc =3D NULL; - xen_domain_handle_t handle; - xc_domain_create(xc, 0, handle, 0, NULL, NULL); - return 0; -} -EOF - compile_prog "" "$xen_libs" - then - xen_ctrl_version=3D40700 - xen=3Dyes =20 # Xen 4.6 elif --=20 Anthony PERARD