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=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=ham 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 4B894C433E0 for ; Mon, 4 Jan 2021 03:33:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 252C020E65 for ; Mon, 4 Jan 2021 03:33:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727550AbhADDYc (ORCPT ); Sun, 3 Jan 2021 22:24:32 -0500 Received: from us-smtp-delivery-124.mimecast.com ([63.128.21.124]:21845 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726124AbhADDYb (ORCPT ); Sun, 3 Jan 2021 22:24:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1609730584; 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=gZSEcMV6HrgwioULaRsP1a/F6QmzsKsD5eRpNgK39q0=; b=ZCxf5enU6U0bGJR9lAOTuwn+ZSiz/Ges7n1Aerw8Hfp2vfRnJgIFdU1nyo6Tm4MLQCAXTT m9NTUVWKK8Zhs3lI4ckug4VgqyZerzGZUcgCG4AagGSO5qeBFK3oiMDHqhFps66887mie3 qxJWTbnQiyKsxcj3+znKvaRssLMeLqM= 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-430-EPvtJQvVOqWZOgwKIvY9pw-1; Sun, 03 Jan 2021 22:23:02 -0500 X-MC-Unique: EPvtJQvVOqWZOgwKIvY9pw-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7A886800D55; Mon, 4 Jan 2021 03:23:01 +0000 (UTC) Received: from [10.72.13.221] (ovpn-13-221.pek2.redhat.com [10.72.13.221]) by smtp.corp.redhat.com (Postfix) with ESMTP id 572B16F7EB; Mon, 4 Jan 2021 03:22:56 +0000 (UTC) Subject: Re: [PATCH V2 16/19] virtio-pci: introduce modern device module To: Randy Dunlap , mst@redhat.com, virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org Cc: shahafs@mellanox.com References: <20201204040353.21679-1-jasowang@redhat.com> <20201204040353.21679-17-jasowang@redhat.com> From: Jason Wang Message-ID: <9ea86f91-0ca5-bfd6-4489-93a726455c41@redhat.com> Date: Mon, 4 Jan 2021 11:22:54 +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: 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.11 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2020/12/5 上午1:10, Randy Dunlap wrote: > Hi Jason-- > > On 12/3/20 8:03 PM, Jason Wang wrote: >> diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig >> index 7b41130d3f35..d1a6bd2a975f 100644 >> --- a/drivers/virtio/Kconfig >> +++ b/drivers/virtio/Kconfig >> @@ -12,6 +12,14 @@ config ARCH_HAS_RESTRICTED_VIRTIO_MEMORY_ACCESS >> This option is selected if the architecture may need to enforce >> VIRTIO_F_ACCESS_PLATFORM >> >> +config VIRTIO_PCI_MODERN >> + tristate "Modern Virtio PCI Device" >> + depends on PCI >> + help >> + Modern PCI device implementation. This module implement the > implements > >> + basic probe and control for devices which is based on modern > are > >> + PCI device with possible vendor specific extensions. > devices >> + > > cheers. All fixed. Thanks