From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it1-f180.google.com (mail-it1-f180.google.com [209.85.166.180]) by dpdk.org (Postfix) with ESMTP id 89B071B3A2 for ; Wed, 12 Dec 2018 12:58:56 +0100 (CET) Received: by mail-it1-f180.google.com with SMTP id p197so9372777itp.0 for ; Wed, 12 Dec 2018 03:58:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=FPeRfBMVZZ5JdlhnopmxZknseYoncZXtp7VRx3rsj0U=; b=azeTvIrHspi02MYXAt0itekoV1CtVbFippEilR3/JjKHOKE6YGENGiLs/DFtZzsqo4 eQLhf0oo686s2p7gsZ8MA5BamDjseuyKsGNa0JsHqjnt2V2U9o8Cd2+TLnx8e5/TyMc7 MXfQ0VrnZZQFoNf7HHMAsCFGfgtiQv2k6Q+SChoDGKRFPV+MeTJPFq+HNPlPkPwWc2uD Epd3xHDE0WUKs9QNv79ZJ45ASp4JjT1Urb5YZKkA8i0zkCpjUgaFze/0SIfa7kCxnOz8 +nzW+G71vxoeqNjfk3EUrlKxYOgo3KqJghvCVa9FW3rouaUuBMUlt197aTyTsvrwrw/H zkuA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=FPeRfBMVZZ5JdlhnopmxZknseYoncZXtp7VRx3rsj0U=; b=jV8UjgfquKIqwgqAFMTED9w7y/+0ngyI+7Llsxs/K6stDDs+/iMWL3p+cN/CamPjlG vIfYdPtQ++EGb1IwY/zBKdwScRVswwrzkLabiIWlpeC4bvaI7RNeAyiyEJPz3ICTR6pl DZFAe0EO03lMicmrAG9BplpKTbbSQHBC6wPbTOBtnm9+NU5iZ8to/UzZKxYzL9S04MZR IItXThvGSAb/AlxXd3X7lzSx2jOGwxJ99W+CrI9U2WSFpDN2lokVa3G+9My49WIJ7OMX JDF4WhsGevNTjfRcKvkyJCsprDfREF+bT5509lzaYD3+AJv3bFTy5t7Mzv8UnqjMsYbQ QKyw== X-Gm-Message-State: AA+aEWbGSurPIB7gLKs2wmBIX4PfdeMJ8h1t/Kz8hFDg9+C8EUdiGZSM X9Ft76zVL+Ilof/kf/sqo9NehZ6f65feP7aQUlihGS1z X-Google-Smtp-Source: AFSGD/W6N2eRQpSbcY/QQYexFPEjuoX21vd8XoAbBv+zeflqGkOo/Sw8yZmsQY4+adSHEt/jQT1j6IHxJyPMPWghS0w= X-Received: by 2002:a05:660c:4c5:: with SMTP id v5mr5772706itk.104.1544615935562; Wed, 12 Dec 2018 03:58:55 -0800 (PST) MIME-Version: 1.0 From: "RAJESH KUMAR S.R" Date: Wed, 12 Dec 2018 17:28:18 +0530 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] JUMBO FRAMEs on virtio in dpdk 18.11 X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2018 11:58:56 -0000 Hi, I need a help/clarification regarding the latest dpdk 18.11 version. I'm new to dpdk. I'm running a custom app which uses dpdk 18.02 version. Recently, I upgraded dpdk to 18.11 version. I see that Jumbo frames are not passing via virtio interfaces which were earlier passing through virtio interface. Do virtio support jumbo frames for dpdk 18.11 version? I don't see the "DEV_RX_OFFLOAD_JUMBO_FRAME" set for rx_offload in vritio driver which is present in other dirvers like e1000 driver. Earlier(with dpdk 18.02) I was enabling the jumbo frames using "jumbo_frame" attribute as part of "rxmode" in device configuration and after setting mtu as 9000, I was able to pass larger packets of size ~8100 in virtio. As the rxmode struct is removed and offloads are used, I set the DEV_RX_OFFLOAD_JUMBO_FRAME flag as part of rx_offloads but I'm getting this error for virtio, "requested Rx offloads 0x800 doesn't match Rx offloads capabilities 0x21d in rte_eth_dev_configure()" I see that the max allowed packet size in virtio code is ~9000 B #define VIRTIO_MAX_RX_PKTLEN 9728U I just tried disabling the offload check and running after setting the required higher mtu , but larger packets are not passing through.