From patchwork Fri Jan 15 13:40:21 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 86704 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3DB72A0A02; Fri, 15 Jan 2021 14:41:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4D64C1410D8; Fri, 15 Jan 2021 14:41: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 AEBB21410CE for ; Fri, 15 Jan 2021 14:41:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610718078; 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=pVnYxPhej37y9xzMMS2OI9uQrViu4uVS3wN83G5l8TA=; b=fWTBDYku2INN3qwJ4VZ/O3/K8eBBh0mEDXdnaiizpVe/VdBDaxVZ9wCH8hDvNOcbLeMMD7 K/9yx46VqaAZq8I9q6X6D88cN0t3EMy9eraYYTeightGHMWHHjrf5SfuKeNRDUsySYOUZV 77TGaBs8amDsehfjxDdXbL9L+b5Ahwc= 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-588-heyjHfKFM6OP7QHH1llJ4A-1; Fri, 15 Jan 2021 08:41:16 -0500 X-MC-Unique: heyjHfKFM6OP7QHH1llJ4A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 669001842141; Fri, 15 Jan 2021 13:41:15 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.194.106]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2267010013C0; Fri, 15 Jan 2021 13:41:12 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: ferruh.yigit@intel.com, Qi Zhang , Xiao Wang Date: Fri, 15 Jan 2021 14:40:21 +0100 Message-Id: <20210115134021.7391-4-david.marchand@redhat.com> In-Reply-To: <20210115134021.7391-1-david.marchand@redhat.com> References: <20210115134021.7391-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH 3/3] net/fm10k: remove vector config 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" This config item is not exposed anymore now that we removed make support. Signed-off-by: David Marchand Reviewed-by: Ferruh Yigit --- drivers/net/fm10k/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/fm10k/meson.build b/drivers/net/fm10k/meson.build index fa264f489f..299b9ffb58 100644 --- a/drivers/net/fm10k/meson.build +++ b/drivers/net/fm10k/meson.build @@ -15,7 +15,6 @@ sources = files( 'fm10k_rxtx.c', ) if arch_subdir == 'x86' - dpdk_conf.set('RTE_LIBRTE_FM10K_INC_VECTOR', 1) sources += files('fm10k_rxtx_vec.c') endif