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 12D1BA0093; Fri, 17 Jun 2022 07:08:09 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ED6C0415D7; Fri, 17 Jun 2022 07:08:08 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 14CDD40689 for ; Fri, 17 Jun 2022 07:08:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1655442486; 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=Zpu/Q0fli1nczPeaHxSbbCtrUwHDPo9ploswrUTiB00=; b=CbRxGImXYbclPCnxFE5N6U8k3f1wJNBhPODQmUgQRO+eaNBHtdkLCdu1W/Akq/EuK9/FfM 4GKMjSk/o3JVAvzq8GSpGVU5b82TL5PJGTFl9VdcxlX7u2pgfqQT/0kdpviVl4vaDCE9zI sHkqKAW3hyNEbQI8niWWT4Kfras3tT8= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-563-GLUzHSBXOoyw3VkFCE9Dgw-1; Fri, 17 Jun 2022 01:08:02 -0400 X-MC-Unique: GLUzHSBXOoyw3VkFCE9Dgw-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6B9D029ABA20; Fri, 17 Jun 2022 05:08:01 +0000 (UTC) Received: from fchome.redhat.com (unknown [10.40.193.132]) by smtp.corp.redhat.com (Postfix) with ESMTP id A94832026985; Fri, 17 Jun 2022 05:07:59 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Xiaoyun Li , Aman Singh , Yuying Zhang , Keith Wiles , Bruce Richardson , Harry van Haaren , Luca Boccassi Subject: [PATCH v2 1/3] app/testpmd: restore ixgbe bypass commands Date: Fri, 17 Jun 2022 07:07:51 +0200 Message-Id: <20220617050753.1273320-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.4 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 d13e98125e..69c7595a45 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -68,6 +68,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