From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F3A4FA00C2; Thu, 21 Jul 2022 10:06:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C7E7742847; Thu, 21 Jul 2022 10:06:31 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id AA51842847 for ; Thu, 21 Jul 2022 10:06:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1658390790; 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=MJeJrc8ON81WwMfXKKhyCYMgA1NPzGZ6EoFj0KGvELs=; b=g+WFFB7cLcWFXvlvg33Xbd+U1BWg+ijBYW7/TkfweMiZpD/atIDgE5wQ0vCqoZPIU/bEGy ipdlCHi1Nc7rE1G+FSSM1tjp9M8jkYYu4qpp3YlkmO2407b9osCsSqNjYMxj/NYBETqqfv +oJqiDQp2TFadj26QuAuGEFeGPM2Dr8= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-50--oS4tuNOMmGzdE9VPdGv5A-1; Thu, 21 Jul 2022 04:06:18 -0400 X-MC-Unique: -oS4tuNOMmGzdE9VPdGv5A-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A164F811E75; Thu, 21 Jul 2022 08:06:17 +0000 (UTC) Received: from localhost.localdomain (unknown [10.40.192.194]) by smtp.corp.redhat.com (Postfix) with ESMTP id 25AE11121314; Thu, 21 Jul 2022 08:06:15 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Aman Singh , Yuying Zhang , Keith Wiles , Luca Boccassi , Harry van Haaren , Bruce Richardson Subject: [PATCH v3 1/3] app/testpmd: restore ixgbe bypass commands Date: Thu, 21 Jul 2022 10:05:45 +0200 Message-Id: <20220721080547.2655320-1-david.marchand@redhat.com> In-Reply-To: <20220523071031.1868862-6-david.marchand@redhat.com> References: <20220523071031.1868862-6-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 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 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 Since the switch to meson, ixgbe bypass commands were ineffective as the RTE_LIBRTE_IXGBE_BYPASS build flag was not set, even though the net/ixgbe driver had this feature compiled in. Fixes: 16ade738fd0d ("app/testpmd: build with meson") Cc: stable@dpdk.org Signed-off-by: David Marchand --- app/test-pmd/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index 74399178dd..12df1f8eec 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -65,6 +65,7 @@ if dpdk_conf.has('RTE_NET_I40E') deps += 'net_i40e' endif if dpdk_conf.has('RTE_NET_IXGBE') + cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS'] deps += 'net_ixgbe' endif if dpdk_conf.has('RTE_NET_DPAA') -- 2.36.1