From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BBC90A0350; Thu, 25 Jun 2020 09:58:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A58701B203; Thu, 25 Jun 2020 09:58:00 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 95D02AAD5 for ; Thu, 25 Jun 2020 09:57:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1593071879; 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; bh=kId+6ZBIiUeGLwn9w4hff8ymG/5VtVwA1FsbMwyMPTc=; b=OJc/Zwrw6fTALXHJ9fDpmxammUN+FCD22KIGwpqoBW7aB3EgbM5R2DNJWUtiTjMvrXfM1l Wr5m+nKnCBx1cgkQ1kgpgetzNmd7PzRN8tTpxt72WHnCt/uS6QqNkxbUaxgqbSxEC5zRD4 atEAQA0FVVVhX44uBhTIoPbZJ4l6wOs= 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-280-85lYDNkGMVWIhs1EtECZZA-1; Thu, 25 Jun 2020 03:57:52 -0400 X-MC-Unique: 85lYDNkGMVWIhs1EtECZZA-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 D30E41005512; Thu, 25 Jun 2020 07:57:50 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.229]) by smtp.corp.redhat.com (Postfix) with ESMTP id E14965D9C5; Thu, 25 Jun 2020 07:57:48 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Matan Azrad , Shahaf Shuler , Viacheslav Ovsiienko , Ophir Munk Date: Thu, 25 Jun 2020 09:57:41 +0200 Message-Id: <20200625075742.27657-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] common/mlx5: remove unneeded experimental build flag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" allow_experimental_apis flag has no effect for in-tree compilation. See https://git.dpdk.org/dpdk/commit/?id=acec04c4b2f5 Fixes: 72f756605651 ("common/mlx5: move glue files under Linux directory") Signed-off-by: David Marchand --- drivers/common/mlx5/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/common/mlx5/meson.build b/drivers/common/mlx5/meson.build index 0a8980f2d3..ba43714af3 100644 --- a/drivers/common/mlx5/meson.build +++ b/drivers/common/mlx5/meson.build @@ -7,8 +7,6 @@ if not (is_linux or is_windows) subdir_done() endif -allow_experimental_apis = true - deps += ['hash', 'pci', 'net', 'eal', 'kvargs'] sources += files( 'mlx5_devx_cmds.c', -- 2.23.0