From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f42.google.com (mail-oi0-f42.google.com [209.85.218.42]) by dpdk.org (Postfix) with ESMTP id 638BB2C4B for ; Thu, 22 Sep 2016 19:56:05 +0200 (CEST) Received: by mail-oi0-f42.google.com with SMTP id r126so106709959oib.0 for ; Thu, 22 Sep 2016 10:56:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thezims-net.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=FNUlcosniMMrvTXIAtOXRirBaj/oGjGj/gNUQFCXKIc=; b=wn/wFzSR3uezWq2Ci3ADfiuUJB/AU/B+KuK5WEBtSOmaDkaKZha80voNfh+8iqs+j6 caEMp3t5LiZavqsXB074YYwr7Kt3hq1/0Z2smOkVA3WPjeBAwnUZ5DF4L1ZJV+02x65C 1MkaULrgZvuq+VNxEP7aMKnO00i497UVxot8mKjmAFT+I6jZ3v4d30EqMMvJ6y5/xbwd as6nDfSyc9wNLutRyr+fFmVCwTMYwsDcPkSuuzQNLirt2zbtBxCVEn8K7NyT4twCHFey rJxg5WGB27tkjQTHsNpnwTy8xZ2CsWkUlLJdFBGzYQEXXzax1mYQX1v7Y0aNhzUAMqPF TIhg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=FNUlcosniMMrvTXIAtOXRirBaj/oGjGj/gNUQFCXKIc=; b=VkWkFVVujHVgK9RXpnP8hszIsuNCxhn8sKdJD28jR7M0j0ZwbVmfPQW1OAEpD77mg5 E9qtMkLPe6yr4ZM2ZG+K5prpS1ocAWbrEd6T401GUYPCDnN46SfAAuh1qnePpCfZKzvg 3HxUNClccSTQZKoQph7i41CQtVr0IL++MEf8gyp62uoJsqJZW9XsL5q6IID9N99iRJ6C LOiiO4gcLjOZArHhaX159w5dj5gh0qwSJrEhr+vQpc69kLH/1+4/5Ptg7sUePH8p2wny +zebZOoRut8tqNd9v4p3zUQWmcGR2GRWMmojkPj/n8on9tCOQBi/C/xjdtI2K9kHw5S+ dUFQ== X-Gm-Message-State: AE9vXwOvb//KpBiymt/CSpXOT1qN+F7KDKNxefAePT5WL6TjN6hHj9YhyaqfCioa6d2b4mkqW0CetPtonuXFNiqr X-Received: by 10.202.80.130 with SMTP id e124mr4370075oib.62.1474566964675; Thu, 22 Sep 2016 10:56:04 -0700 (PDT) MIME-Version: 1.0 Received: by 10.202.192.198 with HTTP; Thu, 22 Sep 2016 10:55:34 -0700 (PDT) From: Rob Zimmerman Date: Thu, 22 Sep 2016 13:55:34 -0400 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] Debugging Dropped Frames X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 17:56:05 -0000 Fellow packet wranglers, While developing my stack I've hit an odd scenario where IP frames aren't making it out onto the wire. Oddly enough, rte_eth_stats_get() is showing that packets are indeed getting sent, but I'm not seeing anything on the LAN. I can confirm part of my stack works because my ARP logic works A-OK. Question 1) Does DPDK drop malformed IP packets before shipping them on the wire? I've investigated the memory segment from the ether_hdr on down, and the packet looks fine. I ask this question because after setting the ether_type parameter to ETHER_TYPE_ARP (on an IPv4 frame) it makes it out on the wire. Of course, it's gobbledygook because it's actually an IPv4 frame, but at least it made it on the wire... Question 2) Does DPDK perform any of its own logging that I can troll to get more insight as to what's going on? Thanks for the guidance! Rob