From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 68167C341D9 for ; Fri, 13 Dec 2019 20:39:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9BD5F24739 for ; Fri, 13 Dec 2019 20:39:09 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="W7FtgtZy" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728023AbfLMQST (ORCPT ); Fri, 13 Dec 2019 11:18:19 -0500 Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:56002 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726404AbfLMQST (ORCPT ); Fri, 13 Dec 2019 11:18:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576253898; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=eictPqqvfDWdLCnWulB6nvsiJMgILd7otDTiwQaZME4=; b=W7FtgtZy02cgeowTjxtRgkyZ4xFT2qSVGM77Q+xQmb5rJO9AOgBIT2ez5KWeNhvYZQ0aZq we01nH6WoRkLxRGiSg3khpteMc7lhCzlZolJJkWc1gcfDC76VlR8wDehbqlrGVloctr7pt KAUKgVhiPknzDQ6XqFhbXdrD55H72cs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-82-termAq3FMgGFGnyF0OlLXA-1; Fri, 13 Dec 2019 11:18:14 -0500 X-MC-Unique: termAq3FMgGFGnyF0OlLXA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3E942800D41; Fri, 13 Dec 2019 16:18:12 +0000 (UTC) Received: from x1w.redhat.com (ovpn-205-147.brq.redhat.com [10.40.205.147]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5F91219C4F; Fri, 13 Dec 2019 16:17:57 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: qemu-devel@nongnu.org Cc: John Snow , "Michael S. Tsirkin" , Eduardo Habkost , Paul Durrant , Marcel Apfelbaum , kvm@vger.kernel.org, Stefano Stabellini , Igor Mammedov , Anthony Perard , qemu-block@nongnu.org, Richard Henderson , xen-devel@lists.xenproject.org, Paolo Bonzini , Sergio Lopez , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Subject: [PATCH 00/12] hw/i386/pc: Move PC-machine specific declarations to 'pc_internal.h' Date: Fri, 13 Dec 2019 17:17:41 +0100 Message-Id: <20191213161753.8051-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Content-Transfer-Encoding: quoted-printable Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Hi Paolo, Since you posted your "x86: allow building without PC machine types" series [1], I looked at my past work on this topic (restrict "hw/i386/pc.h" to the X86 architecture). I'm glad to see in [2] you remove most (all) of the last uses. Since I haven't looked at this for some time, my WiP branch was quite diverged from QEMU master. I guess I could salvage most of the easy patches. The rest is QOMification of GSI/IOAPIC which require various changes with the i8259, so I'll keep that for later. [1] https://www.mail-archive.com/qemu-devel@nongnu.org/msg664760.html [2] https://www.mail-archive.com/qemu-devel@nongnu.org/msg664765.html Philippe Mathieu-Daud=C3=A9 (12): hw/i386/pc: Convert DPRINTF() to trace events hw/i386/pc: Move kvm_i8259_init() declaration to sysemu/kvm.h hw/i386/pc: Remove obsolete pc_pci_device_init() declaration hw/i386/pc: Remove obsolete cpu_set_smm_t typedef hw/i386/ich9: Remove unused include hw/i386/ich9: Move unnecessary "pci_bridge.h" include hw/ide/piix: Remove superfluous DEVICE() cast hw/ide/piix: Use ARRAY_SIZE() instead of magic numbers hw/intc/ioapic: Make ioapic_print_redtbl() static hw/i386/pc: Rename allocate_cpu_irq from 'pc' to 'x86_machine' hw/i386/pc: Move x86_machine_allocate_cpu_irq() to 'hw/i386/x86.c' hw/i386/pc: Move PC-machine specific declarations to 'pc_internal.h' hw/i386/pc_internal.h | 144 ++++++++++++++++++++++++++++++ include/hw/i386/ich9.h | 2 - include/hw/i386/ioapic_internal.h | 1 - include/hw/i386/pc.h | 133 --------------------------- include/hw/i386/x86.h | 2 + include/sysemu/kvm.h | 1 + hw/i386/acpi-build.c | 2 + hw/i386/microvm.c | 2 +- hw/i386/pc.c | 47 ++-------- hw/i386/pc_piix.c | 1 + hw/i386/pc_q35.c | 1 + hw/i386/pc_sysfw.c | 1 + hw/i386/x86.c | 30 +++++++ hw/i386/xen/xen-hvm.c | 1 + hw/ide/piix.c | 29 +++--- hw/intc/ioapic_common.c | 2 +- hw/pci-bridge/i82801b11.c | 1 + hw/i386/trace-events | 6 ++ 18 files changed, 211 insertions(+), 195 deletions(-) create mode 100644 hw/i386/pc_internal.h --=20 2.21.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 10D6CC43603 for ; Fri, 13 Dec 2019 21:25:45 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8798B24125 for ; Fri, 13 Dec 2019 21:25:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="W7FtgtZy" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8798B24125 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:50924 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifng2-00013v-0m for qemu-devel@archiver.kernel.org; Fri, 13 Dec 2019 11:20:26 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:55549) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifne2-0007nD-9n for qemu-devel@nongnu.org; Fri, 13 Dec 2019 11:18:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ifndz-00083x-Ff for qemu-devel@nongnu.org; Fri, 13 Dec 2019 11:18:20 -0500 Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:27929 helo=us-smtp-1.mimecast.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ifndz-00082N-BH for qemu-devel@nongnu.org; Fri, 13 Dec 2019 11:18:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576253898; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=eictPqqvfDWdLCnWulB6nvsiJMgILd7otDTiwQaZME4=; b=W7FtgtZy02cgeowTjxtRgkyZ4xFT2qSVGM77Q+xQmb5rJO9AOgBIT2ez5KWeNhvYZQ0aZq we01nH6WoRkLxRGiSg3khpteMc7lhCzlZolJJkWc1gcfDC76VlR8wDehbqlrGVloctr7pt KAUKgVhiPknzDQ6XqFhbXdrD55H72cs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-82-termAq3FMgGFGnyF0OlLXA-1; Fri, 13 Dec 2019 11:18:14 -0500 X-MC-Unique: termAq3FMgGFGnyF0OlLXA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3E942800D41; Fri, 13 Dec 2019 16:18:12 +0000 (UTC) Received: from x1w.redhat.com (ovpn-205-147.brq.redhat.com [10.40.205.147]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5F91219C4F; Fri, 13 Dec 2019 16:17:57 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: qemu-devel@nongnu.org Subject: [PATCH 00/12] hw/i386/pc: Move PC-machine specific declarations to 'pc_internal.h' Date: Fri, 13 Dec 2019 17:17:41 +0100 Message-Id: <20191213161753.8051-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 205.139.110.120 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Stefano Stabellini , Sergio Lopez , Eduardo Habkost , kvm@vger.kernel.org, Paul Durrant , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , "Michael S. Tsirkin" , Paolo Bonzini , xen-devel@lists.xenproject.org, Anthony Perard , Igor Mammedov , qemu-block@nongnu.org, John Snow , Richard Henderson Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Hi Paolo, Since you posted your "x86: allow building without PC machine types" series [1], I looked at my past work on this topic (restrict "hw/i386/pc.h" to the X86 architecture). I'm glad to see in [2] you remove most (all) of the last uses. Since I haven't looked at this for some time, my WiP branch was quite diverged from QEMU master. I guess I could salvage most of the easy patches. The rest is QOMification of GSI/IOAPIC which require various changes with the i8259, so I'll keep that for later. [1] https://www.mail-archive.com/qemu-devel@nongnu.org/msg664760.html [2] https://www.mail-archive.com/qemu-devel@nongnu.org/msg664765.html Philippe Mathieu-Daud=C3=A9 (12): hw/i386/pc: Convert DPRINTF() to trace events hw/i386/pc: Move kvm_i8259_init() declaration to sysemu/kvm.h hw/i386/pc: Remove obsolete pc_pci_device_init() declaration hw/i386/pc: Remove obsolete cpu_set_smm_t typedef hw/i386/ich9: Remove unused include hw/i386/ich9: Move unnecessary "pci_bridge.h" include hw/ide/piix: Remove superfluous DEVICE() cast hw/ide/piix: Use ARRAY_SIZE() instead of magic numbers hw/intc/ioapic: Make ioapic_print_redtbl() static hw/i386/pc: Rename allocate_cpu_irq from 'pc' to 'x86_machine' hw/i386/pc: Move x86_machine_allocate_cpu_irq() to 'hw/i386/x86.c' hw/i386/pc: Move PC-machine specific declarations to 'pc_internal.h' hw/i386/pc_internal.h | 144 ++++++++++++++++++++++++++++++ include/hw/i386/ich9.h | 2 - include/hw/i386/ioapic_internal.h | 1 - include/hw/i386/pc.h | 133 --------------------------- include/hw/i386/x86.h | 2 + include/sysemu/kvm.h | 1 + hw/i386/acpi-build.c | 2 + hw/i386/microvm.c | 2 +- hw/i386/pc.c | 47 ++-------- hw/i386/pc_piix.c | 1 + hw/i386/pc_q35.c | 1 + hw/i386/pc_sysfw.c | 1 + hw/i386/x86.c | 30 +++++++ hw/i386/xen/xen-hvm.c | 1 + hw/ide/piix.c | 29 +++--- hw/intc/ioapic_common.c | 2 +- hw/pci-bridge/i82801b11.c | 1 + hw/i386/trace-events | 6 ++ 18 files changed, 211 insertions(+), 195 deletions(-) create mode 100644 hw/i386/pc_internal.h --=20 2.21.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8333EC00454 for ; Fri, 13 Dec 2019 21:01:49 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B99822469F for ; Fri, 13 Dec 2019 21:01:48 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="Ka4nz00/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B99822469F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ifneC-0008MX-PN; Fri, 13 Dec 2019 16:18:32 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ifneB-0008Ld-BI for xen-devel@lists.xenproject.org; Fri, 13 Dec 2019 16:18:31 +0000 X-Inumbo-ID: 335c7294-1dc4-11ea-8f6f-12813bfff9fa Received: from us-smtp-1.mimecast.com (unknown [205.139.110.120]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTP id 335c7294-1dc4-11ea-8f6f-12813bfff9fa; Fri, 13 Dec 2019 16:18:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576253909; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=eictPqqvfDWdLCnWulB6nvsiJMgILd7otDTiwQaZME4=; b=Ka4nz00/+o+dBv3m/syJ2nygfFc9PPzGKkjtkWxYvvq/ULKBpBCyU1VATG5AqonLN9fU+h FJUzlNPHa9yn9YE6N2AaH92+EyLb87+0+vZeJDE+g1g6uCoV8gFo2888iWT3AkhuVq2xWn djFXgWTIP+L64VquZoT2uvM0pICGTJM= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-82-termAq3FMgGFGnyF0OlLXA-1; Fri, 13 Dec 2019 11:18:14 -0500 X-MC-Unique: termAq3FMgGFGnyF0OlLXA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3E942800D41; Fri, 13 Dec 2019 16:18:12 +0000 (UTC) Received: from x1w.redhat.com (ovpn-205-147.brq.redhat.com [10.40.205.147]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5F91219C4F; Fri, 13 Dec 2019 16:17:57 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: qemu-devel@nongnu.org Date: Fri, 13 Dec 2019 17:17:41 +0100 Message-Id: <20191213161753.8051-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Subject: [Xen-devel] [PATCH 00/12] hw/i386/pc: Move PC-machine specific declarations to 'pc_internal.h' X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Stefano Stabellini , Sergio Lopez , Eduardo Habkost , kvm@vger.kernel.org, Paul Durrant , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , "Michael S. Tsirkin" , Paolo Bonzini , Marcel Apfelbaum , xen-devel@lists.xenproject.org, Anthony Perard , Igor Mammedov , qemu-block@nongnu.org, John Snow , Richard Henderson Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" SGkgUGFvbG8sCgpTaW5jZSB5b3UgcG9zdGVkIHlvdXIgIng4NjogYWxsb3cgYnVpbGRpbmcgd2l0 aG91dCBQQyBtYWNoaW5lCnR5cGVzIiBzZXJpZXMgWzFdLCBJIGxvb2tlZCBhdCBteSBwYXN0IHdv cmsgb24gdGhpcyB0b3BpYwoocmVzdHJpY3QgImh3L2kzODYvcGMuaCIgdG8gdGhlIFg4NiBhcmNo aXRlY3R1cmUpLgpJJ20gZ2xhZCB0byBzZWUgaW4gWzJdIHlvdSByZW1vdmUgbW9zdCAoYWxsKSBv ZiB0aGUgbGFzdCB1c2VzLgpTaW5jZSBJIGhhdmVuJ3QgbG9va2VkIGF0IHRoaXMgZm9yIHNvbWUg dGltZSwgbXkgV2lQIGJyYW5jaCB3YXMKcXVpdGUgZGl2ZXJnZWQgZnJvbSBRRU1VIG1hc3Rlci4g SSBndWVzcyBJIGNvdWxkIHNhbHZhZ2UgbW9zdCBvZgp0aGUgZWFzeSBwYXRjaGVzLiBUaGUgcmVz dCBpcyBRT01pZmljYXRpb24gb2YgR1NJL0lPQVBJQyB3aGljaApyZXF1aXJlIHZhcmlvdXMgY2hh bmdlcyB3aXRoIHRoZSBpODI1OSwgc28gSSdsbCBrZWVwIHRoYXQgZm9yCmxhdGVyLgoKWzFdIGh0 dHBzOi8vd3d3Lm1haWwtYXJjaGl2ZS5jb20vcWVtdS1kZXZlbEBub25nbnUub3JnL21zZzY2NDc2 MC5odG1sClsyXSBodHRwczovL3d3dy5tYWlsLWFyY2hpdmUuY29tL3FlbXUtZGV2ZWxAbm9uZ251 Lm9yZy9tc2c2NjQ3NjUuaHRtbAoKUGhpbGlwcGUgTWF0aGlldS1EYXVkw6kgKDEyKToKICBody9p Mzg2L3BjOiBDb252ZXJ0IERQUklOVEYoKSB0byB0cmFjZSBldmVudHMKICBody9pMzg2L3BjOiBN b3ZlIGt2bV9pODI1OV9pbml0KCkgZGVjbGFyYXRpb24gdG8gc3lzZW11L2t2bS5oCiAgaHcvaTM4 Ni9wYzogUmVtb3ZlIG9ic29sZXRlIHBjX3BjaV9kZXZpY2VfaW5pdCgpIGRlY2xhcmF0aW9uCiAg aHcvaTM4Ni9wYzogUmVtb3ZlIG9ic29sZXRlIGNwdV9zZXRfc21tX3QgdHlwZWRlZgogIGh3L2kz ODYvaWNoOTogUmVtb3ZlIHVudXNlZCBpbmNsdWRlCiAgaHcvaTM4Ni9pY2g5OiBNb3ZlIHVubmVj ZXNzYXJ5ICJwY2lfYnJpZGdlLmgiIGluY2x1ZGUKICBody9pZGUvcGlpeDogUmVtb3ZlIHN1cGVy Zmx1b3VzIERFVklDRSgpIGNhc3QKICBody9pZGUvcGlpeDogVXNlIEFSUkFZX1NJWkUoKSBpbnN0 ZWFkIG9mIG1hZ2ljIG51bWJlcnMKICBody9pbnRjL2lvYXBpYzogTWFrZSBpb2FwaWNfcHJpbnRf cmVkdGJsKCkgc3RhdGljCiAgaHcvaTM4Ni9wYzogUmVuYW1lIGFsbG9jYXRlX2NwdV9pcnEgZnJv bSAncGMnIHRvICd4ODZfbWFjaGluZScKICBody9pMzg2L3BjOiBNb3ZlIHg4Nl9tYWNoaW5lX2Fs bG9jYXRlX2NwdV9pcnEoKSB0byAnaHcvaTM4Ni94ODYuYycKICBody9pMzg2L3BjOiBNb3ZlIFBD LW1hY2hpbmUgc3BlY2lmaWMgZGVjbGFyYXRpb25zIHRvICdwY19pbnRlcm5hbC5oJwoKIGh3L2kz ODYvcGNfaW50ZXJuYWwuaCAgICAgICAgICAgICB8IDE0NCArKysrKysrKysrKysrKysrKysrKysr KysrKysrKysKIGluY2x1ZGUvaHcvaTM4Ni9pY2g5LmggICAgICAgICAgICB8ICAgMiAtCiBpbmNs dWRlL2h3L2kzODYvaW9hcGljX2ludGVybmFsLmggfCAgIDEgLQogaW5jbHVkZS9ody9pMzg2L3Bj LmggICAgICAgICAgICAgIHwgMTMzIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQogaW5jbHVk ZS9ody9pMzg2L3g4Ni5oICAgICAgICAgICAgIHwgICAyICsKIGluY2x1ZGUvc3lzZW11L2t2bS5o ICAgICAgICAgICAgICB8ICAgMSArCiBody9pMzg2L2FjcGktYnVpbGQuYyAgICAgICAgICAgICAg fCAgIDIgKwogaHcvaTM4Ni9taWNyb3ZtLmMgICAgICAgICAgICAgICAgIHwgICAyICstCiBody9p Mzg2L3BjLmMgICAgICAgICAgICAgICAgICAgICAgfCAgNDcgKystLS0tLS0tLQogaHcvaTM4Ni9w Y19waWl4LmMgICAgICAgICAgICAgICAgIHwgICAxICsKIGh3L2kzODYvcGNfcTM1LmMgICAgICAg ICAgICAgICAgICB8ICAgMSArCiBody9pMzg2L3BjX3N5c2Z3LmMgICAgICAgICAgICAgICAgfCAg IDEgKwogaHcvaTM4Ni94ODYuYyAgICAgICAgICAgICAgICAgICAgIHwgIDMwICsrKysrKysKIGh3 L2kzODYveGVuL3hlbi1odm0uYyAgICAgICAgICAgICB8ICAgMSArCiBody9pZGUvcGlpeC5jICAg ICAgICAgICAgICAgICAgICAgfCAgMjkgKysrLS0tCiBody9pbnRjL2lvYXBpY19jb21tb24uYyAg ICAgICAgICAgfCAgIDIgKy0KIGh3L3BjaS1icmlkZ2UvaTgyODAxYjExLmMgICAgICAgICB8ICAg MSArCiBody9pMzg2L3RyYWNlLWV2ZW50cyAgICAgICAgICAgICAgfCAgIDYgKysKIDE4IGZpbGVz IGNoYW5nZWQsIDIxMSBpbnNlcnRpb25zKCspLCAxOTUgZGVsZXRpb25zKC0pCiBjcmVhdGUgbW9k ZSAxMDA2NDQgaHcvaTM4Ni9wY19pbnRlcm5hbC5oCgotLSAKMi4yMS4wCgoKX19fX19fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KWGVuLWRldmVsIG1haWxpbmcgbGlz dApYZW4tZGV2ZWxAbGlzdHMueGVucHJvamVjdC5vcmcKaHR0cHM6Ly9saXN0cy54ZW5wcm9qZWN0 Lm9yZy9tYWlsbWFuL2xpc3RpbmZvL3hlbi1kZXZlbA==