From nobody Fri Nov 7 10:21:31 2025 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 (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1548090954146869.3826337912982; Mon, 21 Jan 2019 09:15:54 -0800 (PST) Received: from localhost ([127.0.0.1]:56655 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gldAv-000542-57 for importer@patchew.org; Mon, 21 Jan 2019 12:15:53 -0500 Received: from eggs.gnu.org ([209.51.188.92]:38827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gld6b-0001wk-P2 for qemu-devel@nongnu.org; Mon, 21 Jan 2019 12:11:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gld3A-0005fR-6q for qemu-devel@nongnu.org; Mon, 21 Jan 2019 12:07:58 -0500 Received: from smtp03.citrix.com ([162.221.156.55]:55575) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gld39-0005ah-UP for qemu-devel@nongnu.org; Mon, 21 Jan 2019 12:07:52 -0500 X-IronPort-AV: E=Sophos;i="5.56,503,1539648000"; d="scan'208";a="76074063" From: Anthony PERARD To: Date: Mon, 21 Jan 2019 17:07:13 +0000 Message-ID: <20190121170713.11906-1-anthony.perard@citrix.com> X-Mailer: git-send-email 2.20.1 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] [PATCH] 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, Stefano Stabellini , Paul Durrant 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 98b270974d..8684a6e5ef 100755 --- a/configure +++ b/configure @@ -2469,7 +2469,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(); @@ -2479,7 +2478,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); @@ -2521,7 +2519,6 @@ int main(void) { xenforeignmemory_handle *xfmem; xenevtchn_handle *xe; xengnttab_handle *xg; - xen_domain_handle_t handle; =20 xs_daemon_open(); =20 @@ -2530,7 +2527,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); @@ -2548,21 +2544,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