From patchwork Fri Apr 17 14:23:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Beulich X-Patchwork-Id: 11495271 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 4BE6A6CA for ; Fri, 17 Apr 2020 14:24:29 +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 313C520B1F for ; Fri, 17 Apr 2020 14:24:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 313C520B1F 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.89) (envelope-from ) id 1jPRth-0007S6-LB; Fri, 17 Apr 2020 14:23:13 +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 1jPRtg-0007S1-GO for xen-devel@lists.xenproject.org; Fri, 17 Apr 2020 14:23:12 +0000 X-Inumbo-ID: f6666f1a-80b6-11ea-8d02-12813bfff9fa Received: from mx2.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id f6666f1a-80b6-11ea-8d02-12813bfff9fa; Fri, 17 Apr 2020 14:23:10 +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 37530AB5F; Fri, 17 Apr 2020 14:23:08 +0000 (UTC) To: "xen-devel@lists.xenproject.org" From: Jan Beulich Subject: [PATCH 00/10] x86: mm (mainly shadow) adjustments Message-ID: <65bfcd6a-2bb0-da6f-9e85-39f224bd81fb@suse.com> Date: Fri, 17 Apr 2020 16:23:01 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 MIME-Version: 1.0 Content-Language: en-US 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: Andrew Cooper , Tim Deegan , George Dunlap , Wei Liu , =?utf-8?q?R?= =?utf-8?q?oger_Pau_Monn=C3=A9?= Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Large parts of this series are to further isolate pieces which are needed for HVM only, and hence would better not be built with HVM=n. But there are also a few other items which I've noticed along the road. 01: mm: no-one passes a NULL domain to init_xen_l4_slots() 02: shadow: drop a stray forward structure declaration 03: shadow: monitor table is HVM-only 04: shadow: sh_update_linear_entries() is a no-op for PV 05: mm: monitor table is HVM-only 06: shadow: sh_remove_write_access_from_sl1p() can be static 07: shadow: the guess_wrmap() hook is needed for HVM only 08: mm: pagetable_dying() is HVM-only 09: shadow: the trace_emul_write_val() hook is HVM-only 10: shadow: don't open-code shadow_blow_tables_per_domain() Jan Acked-by: Tim Deegan