From patchwork Thu May 14 09:03:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Beulich X-Patchwork-Id: 11548325 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 893D0913 for ; Thu, 14 May 2020 09:05:03 +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 6EFAA206DC for ; Thu, 14 May 2020 09:05:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6EFAA206DC Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.com Authentication-Results: mail.kernel.org; spf=pass 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.92) (envelope-from ) id 1jZ9mJ-0000rj-9t; Thu, 14 May 2020 09:03:43 +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.92) (envelope-from ) id 1jZ9mI-0000re-34 for xen-devel@lists.xenproject.org; Thu, 14 May 2020 09:03:42 +0000 X-Inumbo-ID: ce5ee54a-95c1-11ea-a463-12813bfff9fa Received: from mx2.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id ce5ee54a-95c1-11ea-a463-12813bfff9fa; Thu, 14 May 2020 09:03:41 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 40867AF22; Thu, 14 May 2020 09:03:43 +0000 (UTC) From: Jan Beulich Subject: [PATCH v9 0/9] x86emul: further work To: "xen-devel@lists.xenproject.org" Message-ID: Date: Thu, 14 May 2020 11:03:34 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 Content-Language: en-US X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Andrew Cooper , Wei Liu , Roger Pau Monne Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" 1: address x86_insn_is_mem_{access,write}() omissions 2: disable FPU/MMX/SIMD insn emulation when !HVM 3: support MOVDIR{I,64B} insns 4: support ENQCMD insn 5: support SERIALIZE 6: support X{SUS,RES}LDTRK 7: support FNSTENV and FNSAVE 8: support FLDENV and FRSTOR 9: support FXSAVE/FXRSTOR Main changes from v8 are the new patch 1 and dropped patches from the end of the series. For other changes see the individual patches. Jan