From patchwork Thu May 31 11:43:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dongjiu Geng X-Patchwork-Id: 923134 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=huawei.com Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 40xCrL3F3Hz9s1R for ; Thu, 31 May 2018 13:39:28 +1000 (AEST) Received: from localhost ([::1]:41817 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fOEQv-00034O-E0 for incoming@patchwork.ozlabs.org; Wed, 30 May 2018 23:39:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fOEQH-000321-1s for qemu-devel@nongnu.org; Wed, 30 May 2018 23:38:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fOEQG-0007FX-7V for qemu-devel@nongnu.org; Wed, 30 May 2018 23:38:45 -0400 Received: from [45.249.212.32] (port=33489 helo=huawei.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fOEQB-0007B9-QA; Wed, 30 May 2018 23:38:40 -0400 Received: from DGGEMS412-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id ABAE339215FA; Thu, 31 May 2018 11:38:32 +0800 (CST) Received: from localhost.localdomain (10.143.28.90) by DGGEMS412-HUB.china.huawei.com (10.3.19.212) with Microsoft SMTP Server id 14.3.382.0; Thu, 31 May 2018 11:38:28 +0800 From: Dongjiu Geng To: , , , Date: Thu, 31 May 2018 19:43:54 +0800 Message-ID: <1527767037-6105-1-git-send-email-gengdongjiu@huawei.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 X-Originating-IP: [10.143.28.90] X-CFilter-Loop: Reflected X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 45.249.212.32 Subject: [Qemu-devel] [PATCH v1 0/3] add support for VCPU event states 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: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" support for KVM_GET/SET_VCPU_EVENTS to get/set the SError exception state, and support the state migration. Dongjiu Geng (3): linux-headers: update to v4.17-rc7 kvm: sync linux headers target: arm: Add support for VCPU event states include/standard-headers/asm-x86/hyperv.h | 1 - include/standard-headers/asm-x86/kvm_para.h | 2 +- include/standard-headers/linux/ethtool.h | 36 ++- include/standard-headers/linux/input.h | 4 +- include/standard-headers/linux/pci_regs.h | 7 +- include/standard-headers/linux/virtio_balloon.h | 15 + include/standard-headers/linux/virtio_gpu.h | 1 - include/standard-headers/rdma/vmw_pvrdma-abi.h | 49 ++-- linux-headers/COPYING | 358 +----------------------- linux-headers/asm-arm/kvm.h | 15 + linux-headers/asm-arm64/kvm.h | 19 ++ linux-headers/asm-x86/hyperv.h | 1 - linux-headers/asm-x86/kvm.h | 19 +- linux-headers/linux/kvm.h | 31 +- linux-headers/linux/vfio.h | 27 ++ target/arm/cpu.h | 5 + target/arm/kvm64.c | 64 +++++ target/arm/machine.c | 3 + 18 files changed, 268 insertions(+), 389 deletions(-) delete mode 100644 include/standard-headers/asm-x86/hyperv.h delete mode 100644 linux-headers/asm-x86/hyperv.h