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=-17.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable 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 AED82C4332D for ; Tue, 16 Mar 2021 06:14:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8573865072 for ; Tue, 16 Mar 2021 06:14:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235764AbhCPGLy (ORCPT ); Tue, 16 Mar 2021 02:11:54 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:37874 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235761AbhCPGLq (ORCPT ); Tue, 16 Mar 2021 02:11:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1615875105; 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=HGFqJnJPWEoWdqThLFH/fQr5tvLwsqAidPoANR0ZVyQ=; b=BKx6MstD8T5nvl3OiKbwlzkEtb6K7KXKjRCJFuPCNGPlj0rhWOpNSOwXrfgI4ym8MN+gqT D6xmvYuPccRmpq7vs9KiNX7fsyk1ejA5v7IwzH0CTVZQKxYQHBe59fCaMRp/9J8tcGEwzR 6/4nNC1RddQ+aaCCcnNH1GbPiA5IWE8= 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-162-zTcCLMXFMAiXbYOA1Eq_SA-1; Tue, 16 Mar 2021 02:11:37 -0400 X-MC-Unique: zTcCLMXFMAiXbYOA1Eq_SA-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 084A6107465F; Tue, 16 Mar 2021 06:11:36 +0000 (UTC) Received: from wangxiaodeMacBook-Air.local (ovpn-12-216.pek2.redhat.com [10.72.12.216]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6077019CB4; Tue, 16 Mar 2021 06:11:30 +0000 (UTC) Subject: Re: [PATCH V4 4/7] vDPA/ifcvf: remove the version number string To: Zhu Lingshan , mst@redhat.com, lulu@redhat.com, leonro@nvidia.com Cc: virtualization@lists.linux-foundation.org, netdev@vger.kernel.org, kvm@vger.kernel.org, linux-kernel@vger.kernel.org References: <20210315074501.15868-1-lingshan.zhu@intel.com> <20210315074501.15868-5-lingshan.zhu@intel.com> From: Jason Wang Message-ID: <7b46c912-fa81-6e91-f588-3f856177af5b@redhat.com> Date: Tue, 16 Mar 2021 14:11:28 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <20210315074501.15868-5-lingshan.zhu@intel.com> Content-Type: text/plain; charset=gbk; format=flowed Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org ÔÚ 2021/3/15 ÏÂÎç3:44, Zhu Lingshan дµÀ: > This commit removes the version number string, using kernel > version is enough. > > Signed-off-by: Zhu Lingshan > Reviewed-by: Leon Romanovsky Acked-by: Jason Wang > --- > drivers/vdpa/ifcvf/ifcvf_main.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/vdpa/ifcvf/ifcvf_main.c b/drivers/vdpa/ifcvf/ifcvf_main.c > index fd5befc5cbcc..c34e1eec6b6c 100644 > --- a/drivers/vdpa/ifcvf/ifcvf_main.c > +++ b/drivers/vdpa/ifcvf/ifcvf_main.c > @@ -14,7 +14,6 @@ > #include > #include "ifcvf_base.h" > > -#define VERSION_STRING "0.1" > #define DRIVER_AUTHOR "Intel Corporation" > #define IFCVF_DRIVER_NAME "ifcvf" > > @@ -503,4 +502,3 @@ static struct pci_driver ifcvf_driver = { > module_pci_driver(ifcvf_driver); > > MODULE_LICENSE("GPL v2"); > -MODULE_VERSION(VERSION_STRING);