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=-14.2 required=3.0 tests=BAYES_00,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 7F775C433EF for ; Tue, 14 Sep 2021 22:35:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6A49161164 for ; Tue, 14 Sep 2021 22:35:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235918AbhINWg7 (ORCPT ); Tue, 14 Sep 2021 18:36:59 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40424 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235864AbhINWgq (ORCPT ); Tue, 14 Sep 2021 18:36:46 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8C2BAC0613DE for ; Tue, 14 Sep 2021 15:35:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description; bh=UU8NPRmd+WrsnL1h2xgrcQ/YKA6+gLoFDMON/ybQaQ0=; b=c1OtSLFAo4M0NNPtWPVb8JIekI IaIzxdSMDGHpnQ/h3DlU2zriGdjS+nPr3bdvx1StU1I1WMJ5rYeVznEjTJnoDPnTjx2iseFgWUwqJ hCO/4qyxYlXfq0wDbsVDj7Bn+HHoLMtdZ8bO2cSBqRUXTUnGMK4+4JY4yNKtQ39jdMSnesezOoIQf StRqZ1SHCGbdngAZxqPWyfsCFFXHBLWuBb9JZQBYEBHReBDfn8hlhUcFkRig4FSoLNsBVrnlElwoL v2jorbiu1PiozSKgb8x3q2HUl81ofXrQmn8WTNlVvdOWE/uVHAdUUgnyq6t1FQw2D4bxy9dBdGvb0 ZNdbqvGQ==; Received: from [2601:1c0:6280:3f0::aa0b] by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mQH1O-007QoH-OK; Tue, 14 Sep 2021 22:35:22 +0000 Subject: Re: [PATCH v2 5/5] eni_vdpa: add vDPA driver for Alibaba ENI To: Wu Zongyong , jasowang@redhat.com, virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org, mst@redhat.com Cc: wei.yang1@linux.alibaba.com References: From: Randy Dunlap Message-ID: Date: Tue, 14 Sep 2021 15:35:22 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 9/14/21 5:24 AM, Wu Zongyong wrote: > diff --git a/drivers/vdpa/Kconfig b/drivers/vdpa/Kconfig > index 3d91982d8371..9587b9177b05 100644 > --- a/drivers/vdpa/Kconfig > +++ b/drivers/vdpa/Kconfig > @@ -78,4 +78,12 @@ config VP_VDPA > help > This kernel module bridges virtio PCI device to vDPA bus. > > +config ALIBABA_ENI_VDPA > + tristate "vDPA driver for Alibaba ENI" > + select VIRTIO_PCI_LEGACY_LIB > + depends on PCI_MSI > + help > + VDPA driver for Alibaba ENI(Elastic Network Interface) which is build upon ENI (Elastic built upon the > + virtio 0.9.5 specification. > + > endif # VDPA -- ~Randy