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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B84F7C433FE for ; Fri, 8 Oct 2021 19:23:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A23A161038 for ; Fri, 8 Oct 2021 19:23:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241072AbhJHTY6 (ORCPT ); Fri, 8 Oct 2021 15:24:58 -0400 Received: from mail.kernel.org ([198.145.29.99]:58836 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231316AbhJHTY4 (ORCPT ); Fri, 8 Oct 2021 15:24:56 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id BED7D60FF2; Fri, 8 Oct 2021 19:23:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1633720981; bh=IBIkC1hOHMKAeBXPbuyx1mvQIerxGedPt5TpcHEBaWs=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=tWZ8SCUJW1H2UTAct6/czodPn6X6XJveHgRpuD2xf/5tSPt8P5EXymwTzkeKxnN9v yjvkKOwFrHjYWyvAT3Rx/s5ZzEY7o+yaBujEiTgWQfcaYyTdBLCx/fmkbhYEETdzZV YLvwfSoJHQoh3agxYbmiDGqJcnJOeNo7YZ3wfeJIBIB0GqNDJB0ocr2fC3bACPFAOD bcM9Fpm0RlFVbmn+oY3lJwUrg1BGkaE3z6HVYgL9rZs5ddtt/2lPurHBy7lRuTXpCV zgrMYE1GaOpVGYQcOJLJN1Ec6GKAw+0Gb49KIDkM2P6I6YPZvWmdaU/VB1FkomuU1c wl6wyz+lWQ9hg== Date: Fri, 8 Oct 2021 14:22:59 -0500 From: Bjorn Helgaas To: Sunil Muthuswamy Cc: Marc Zyngier , Michael Kelley , Boqun Feng , KY Srinivasan , Haiyang Zhang , Stephen Hemminger , Dexuan Cui , Lorenzo Pieralisi , Rob Herring , =?utf-8?Q?=22Krzysztof_Wilczy=C5=84ski=22?= , Bjorn Helgaas , Wei Liu , Thomas Gleixner , Ingo Molnar , Borislav Petkov , "\"H. Peter Anvin\"" , Arnd Bergmann , "linux-hyperv@vger.kernel.org" , "linux-pci@vger.kernel.org" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH v2 2/2] PCI: hv: Support for Hyper-V vPCI for ARM64 Message-ID: <20211008192259.GA1366435@bhelgaas> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Subject line should start with a verb telling us what this does. On Fri, Oct 08, 2021 at 05:21:29PM +0000, Sunil Muthuswamy wrote: > This patch adds support for Hyper-V vPCI by adding a PCI MSI > IRQ domain specific to Hyper-V that is based on SPIs. The IRQ > domain parents itself to the arch GIC IRQ domain for basic > vector management. Same "This patch adds ..." comment as for patch 1/2. You could say something like "Add support ...". It would also be good to include "ARM64" since I think that's the point here. > + /* Delivery mode: Fixed */ > + *delivery_mode = 0; Why not APIC_DELIVERY_MODE_FIXED as you used for x86? Bjorn