From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 93FCFA0A0E; Wed, 3 Feb 2021 10:37:20 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0E00324049C; Wed, 3 Feb 2021 10:37:20 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 1E819240491 for ; Wed, 3 Feb 2021 10:37:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612345037; 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=6ZNP4weUhxdkAWiIGv+Fw2xuDuTszVI7q01SM+nEKqg=; b=RvQfodfpZlz3akhY7cV8i6DCNtiwCIlfii85WmmVAqqeJY7FOV9IkbTdADUuaZpGas5d5c 9EFQxkoRCgGK16fWQI4PrqeBbXJNCCpERE7kcjcl4LXnMhZkfj8cM+Si8MWHDEWIyuPEZ8 LhjHrcFlZ+hmieVVb502xvZ1VYM/dGA= 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-536-lbAWsZS-OESYl9464FE-ow-1; Wed, 03 Feb 2021 04:37:13 -0500 X-MC-Unique: lbAWsZS-OESYl9464FE-ow-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BF7FB801B20; Wed, 3 Feb 2021 09:37:11 +0000 (UTC) Received: from [10.36.110.4] (unknown [10.36.110.4]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 627FB5D9E3; Wed, 3 Feb 2021 09:37:02 +0000 (UTC) To: =?UTF-8?B?6LCi5Y2O5LyfKOatpOaXtuatpOWIu++8iQ==?= , ferruh.yigit@intel.com Cc: dev@dpdk.org, david.marchand@redhat.com, anatoly.burakov@intel.com, xuemingl@nvidia.com, grive@u256.net, chenbo.xia@intel.com References: <1611890309-99135-1-git-send-email-huawei.xhw@alibaba-inc.com> <5a677d8c-e858-0a66-3d80-07026c8c31e4@alibaba-inc.com> <61492d00-4d4f-61a4-8ae6-ee49e71b2add@alibaba-inc.com> From: Maxime Coquelin Message-ID: <1b7e52d7-a5cc-f49c-d63f-f40c1b9766ce@redhat.com> Date: Wed, 3 Feb 2021 10:37:00 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 MIME-Version: 1.0 In-Reply-To: <61492d00-4d4f-61a4-8ae6-ee49e71b2add@alibaba-inc.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v6 0/2] support both PIO and MMIO BAR for legacy device in virtio PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Huawei, On 2/1/21 8:43 AM, 谢华伟(此时此刻) wrote: > > On 2021/1/29 11:25, chris wrote: >> Hi ferruh and maxime: >> >> v6 changes: >> >> send v6. Let us discuss if merge in this or early next release. > > Ping. The -rc2 was released on the 29th, so I think it is too late for this release. As Ferruh suggested, he can pick it early for next release, so doing that we'll be sure to have a wider testing. Apart from that, I am fine with the series. Thanks, Maxime > >> >> Sorry that forget to reply to previous message id. >> >>>      - change to DEBUG level for IO bar detection in pci_uio_ioport_map >>>      - rework the code in iobar branch >>>      - fixes commit message format issue >>>      - temporarily remove the 3rd patch for vfio path, leave it for >>> future discusssion >>>      - rework against virtio_pmd_rework_v2 >>> >>> >>> huawei.xhw (2): >>>    bus/pci: use PCI standard sysfs entry to get PIO address >>>    bus/pci: support MMIO in PCI ioport accessors >>> >>>   drivers/bus/pci/linux/pci.c     |  81 ------------------- >>>   drivers/bus/pci/linux/pci_uio.c | 170 >>> ++++++++++++++++++++++++++++------------ >>>   2 files changed, 118 insertions(+), 133 deletions(-) >>> >