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 99759A0531 for ; Fri, 24 Jan 2020 11:32:46 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 93C882BCE; Fri, 24 Jan 2020 11:32:45 +0100 (CET) Received: from mail-vs1-f45.google.com (mail-vs1-f45.google.com [209.85.217.45]) by dpdk.org (Postfix) with ESMTP id 763DC2A62 for ; Fri, 24 Jan 2020 11:32:44 +0100 (CET) Received: by mail-vs1-f45.google.com with SMTP id n27so918895vsa.0 for ; Fri, 24 Jan 2020 02:32:44 -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=1X9kLI8wtVJeGLecW4Ks4ncleql3Qli1PON1DpC3u6c=; b=KkGUhOAwhQLbI5OL1WAXj4j2zT7aRKtKbw9jasQV0TaPS3jmH3ADzrtO+AF2Tx+V3L GXXmHFT6JrJjxiSGYUOkQSifi2W6NBDdaTjPjWIIYkZMQZHdWB/hvxhq2ugXVJvDb5xE mmOcPNUOfZ2yL4Zn9SfG6jhtdCj4vB9Hp4gpGjAAbwa4yTsYKYRF26pbSyJ2dIsoKzm/ d4V5h8xEb0M3fxBVVZeah6Z6sm/iRUKxhl0jX3EmXvvA94O0jezjDaetHkfe+Lo6XoeL p5fjsmrWT6yv0Xbb1Iiv2efRX4/vkO2xjKj+Er4zf96+RrErPclBh/OT4oouVSjswBIz k+vg== 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=1X9kLI8wtVJeGLecW4Ks4ncleql3Qli1PON1DpC3u6c=; b=Y1HUTOkIKvIKFpd/fNzSTQ+XZfpHrO7LIbXBOzoQRDp2cAJjglARmUJXuK8loRSiMI qi72z2xukeEhf+Ojem7j8qI5FX+o6Fkd+CzcpkBsp4ABA7YBQOOV+dX6OrQr/GocTFwC V1Z1OLrahos3ItDFtbonpvigoBlXSBZq8hctISWFc6AGOXjiPEaSsKhS8g5caecUuTW+ 1vISNG7WqZRqgQDnn17rG4Xkq5dlNryYVDbrFCzHEvfWLy+5dayEuQ9nwLF0rnpJrTNe MJ5H4swFTKtEls3J65GXV6dTncatSASTSHsTaQM75BYJsqjAowbFMvRTJEbB/8PdEQG9 Z8tA== X-Gm-Message-State: APjAAAVbQEnhPdXDGwELhd6/FlEHLpbmJ8B6vDuSbC4o4KJd2A6soKal tP7wXEOC1Q4f+Du/cLWmsi/hgiW5RBWFpDQWZHIQIybI X-Google-Smtp-Source: APXvYqyJbzZbHDeBlnmFr3MPrqk9XAD3k5FGFlVRz53YYRppylUp5xZ3Oe80QMDmWblK3FQ8oX2/0Yf9uElrAQHzDI8= X-Received: by 2002:a67:ec12:: with SMTP id d18mr1638965vso.129.1579861963310; Fri, 24 Jan 2020 02:32:43 -0800 (PST) MIME-Version: 1.0 From: Gaurav Bansal Date: Fri, 24 Jan 2020 16:02:28 +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] how to enable padding for the broadcom nic using dpdk pmd 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: , Errors-To: users-bounces@dpdk.org Sender: "users" hi all, I am using BCM57414 broadcom nic with the dpdk pmd. For the ARP packets (len=42 bytes) being sent to bnxt_start_xmit, they are not making it to the wire. If i add the ARP entry manually in the cache, then http curl request went through fine (ack pkg being of 66 bytes with tcp options). I tried to go through the code for dpdk bnxt pmd but not able to find the code where we either do the padding in pmd OR try to offload the same to the NIC. Can anyone please let me know how to enable the padding offload in the NIC ? thanks, gaurav