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=-7.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 62F24C63697 for ; Fri, 27 Nov 2020 02:51:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F3ADC2222B for ; Fri, 27 Nov 2020 02:51:19 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="Pnc6PvsC" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2404165AbgK0CvD (ORCPT ); Thu, 26 Nov 2020 21:51:03 -0500 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:28213 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730961AbgK0CvD (ORCPT ); Thu, 26 Nov 2020 21:51:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1606445462; 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: in-reply-to:in-reply-to:references:references; bh=sDQkslNn1bs9ms9Q14yiNJoO0vMzZ4WNFafjj5jooJ8=; b=Pnc6PvsCCZfc810/HH2VL5TdgNgP9umRBHPuztM9Np9LhiKqRThaNgSubVJ0PPUNKBRobv SIFDSdz+vvoT7texCjGw065HdKmd5GocunJH8ztzmXa18vlPACqvvWopXSVIAh8oUdGpbl HD1zEXK+LC+mFT4zplMkYvfNb2E9OOs= 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-371-VWLlNBS1NBSuh4z9sZYDlA-1; Thu, 26 Nov 2020 21:51:00 -0500 X-MC-Unique: VWLlNBS1NBSuh4z9sZYDlA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B30209CDAF; Fri, 27 Nov 2020 02:50:59 +0000 (UTC) Received: from [10.72.13.168] (ovpn-13-168.pek2.redhat.com [10.72.13.168]) by smtp.corp.redhat.com (Postfix) with ESMTP id CD9775C1C2; Fri, 27 Nov 2020 02:50:54 +0000 (UTC) Subject: Re: [PATCH V2 01/14] virtio-pci: do not access iomem via virtio_pci_device directly To: "Michael S. Tsirkin" Cc: virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org, shahafs@mellanox.com References: <20201126092604.208033-1-jasowang@redhat.com> <20201126092604.208033-2-jasowang@redhat.com> <20201126084436-mutt-send-email-mst@kernel.org> From: Jason Wang Message-ID: <3b65ce4f-9b1d-1542-ffbb-836269e9e80e@redhat.com> Date: Fri, 27 Nov 2020 10:50:53 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20201126084436-mutt-send-email-mst@kernel.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2020/11/26 下午9:46, Michael S. Tsirkin wrote: > On Thu, Nov 26, 2020 at 05:25:51PM +0800, Jason Wang wrote: >> Instead of accessing iomem via virito_pci_device directly. Add an >> indirect level > well this patch does not add any indirection it's just refactoring. > which is ok of course let's just say it as is. > >> to ease the life of splitting out modern virito-pci > typo Will fix. Thanks >