From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by dpdk.org (Postfix) with ESMTP id BCEAE4C9D for ; Tue, 14 Aug 2018 13:14:07 +0200 (CEST) Received: from 1.general.paelzer.uk.vpn ([10.172.196.172] helo=lap.fritz.box) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fpXAX-0000wO-Mk; Tue, 14 Aug 2018 11:07:21 +0000 From: Christian Ehrhardt To: Moti Haimovsky Cc: Matan Azrad , dpdk stable Date: Tue, 14 Aug 2018 13:06:30 +0200 Message-Id: <20180814110651.25277-27-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180814110651.25277-1-christian.ehrhardt@canonical.com> References: <20180814110651.25277-1-christian.ehrhardt@canonical.com> Subject: [dpdk-stable] patch 'net/mlx4: advertise Rx jumbo frame support' has been queued to stable release 18.05.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 11:14:07 -0000 Hi, FYI, your patch has been queued to stable release 18.05.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 08/16/18. So please shout if anyone has objections. Thanks. Christian Ehrhardt --- >>From 366393d9f264a9872a4ffb29762c5511ea12e8ab Mon Sep 17 00:00:00 2001 From: Moti Haimovsky Date: Tue, 31 Jul 2018 19:13:06 +0300 Subject: [PATCH] net/mlx4: advertise Rx jumbo frame support [ upstream commit ff9fe66c9714f1bd0440b264067d3c37de9e2ec9 ] This commit adds the missing Rx jumbo frame support advertisement in Rx offload capabilities. Signed-off-by: Moti Haimovsky Acked-by: Matan Azrad --- drivers/net/mlx4/mlx4_rxq.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/mlx4/mlx4_rxq.c b/drivers/net/mlx4/mlx4_rxq.c index e0867040f..ffe61793d 100644 --- a/drivers/net/mlx4/mlx4_rxq.c +++ b/drivers/net/mlx4/mlx4_rxq.c @@ -678,7 +678,8 @@ uint64_t mlx4_get_rx_queue_offloads(struct priv *priv) { uint64_t offloads = DEV_RX_OFFLOAD_SCATTER | - DEV_RX_OFFLOAD_CRC_STRIP; + DEV_RX_OFFLOAD_CRC_STRIP | + DEV_RX_OFFLOAD_JUMBO_FRAME; if (priv->hw_csum) offloads |= DEV_RX_OFFLOAD_CHECKSUM; -- 2.17.1