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 149E9A0551 for ; Fri, 21 Feb 2020 20:19:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4FB961BFAC; Fri, 21 Feb 2020 20:19:51 +0100 (CET) Received: from mail-oi1-f180.google.com (mail-oi1-f180.google.com [209.85.167.180]) by dpdk.org (Postfix) with ESMTP id 0A8611BFA9 for ; Fri, 21 Feb 2020 20:19:49 +0100 (CET) Received: by mail-oi1-f180.google.com with SMTP id d62so2650486oia.11 for ; Fri, 21 Feb 2020 11:19:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=arista.com; s=googlenew; h=mime-version:from:date:message-id:subject:to; bh=6tEbOZiCDKNBnf6ak/iMjDiasbfB9WN8H9qld8wC9hw=; b=mj5izp297X6oInPez6X4MOtNwPZkZsx7uEgcWM6ylqCMRvxBaDpCmQeglVOSSFRpF0 AOorfRdATlhytiejv5t92VRsLKsvL3x3MubgAOss7j7erBqSmVmeiS8hU4U4MVtxX34D qUldUt7eA6I6qO1WfVY0dxMhOvx0LqlsOQuwJ/KS3R7M/ie23IK3kXycQ2c2G0dIcqdt C3AHjrfIKz+hiwVi7iNFVY7msOM28v5IXh9orkbZo/aGKwglqY5SFEouMcq5B5xRd/57 bI3sLd9HjZce82CysWsZoRrsFG1BjFUclHLwVtC6aI4DW+2g/KYnhwmPFSBBYh1ODlmO BPGg== 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=6tEbOZiCDKNBnf6ak/iMjDiasbfB9WN8H9qld8wC9hw=; b=dwaT5XXD1A3mfdO2K/viuLE1sVpT/SwacjkbaEPaH3gipv+Kbv3mUMgDSIODVUTuGF TuRVg/+C4N9P8t65JMbcmCiPkdrmFSXxvUwQgda1kA2l1eMa9daW4y8CWt1tnwlpdlXQ bdmm1R+W9rGo0LOtoddK67XoMCwGjz7Cgv6XDXrDRToXOd+oE19/AFhkfN+c06iAflvQ OYcOU12O1Hj2s9Ldlq9unwPffwku7MyF9AfAcVJ0uwMvtSiX26DoGLyJETD4ViyaRCkU /bmPlXsp8kjUeXepa5YGS1mFVTN22tcCBhHiL+o/N1OeC9PQUYDli0uvvORjl/K7n7Q7 dDJQ== X-Gm-Message-State: APjAAAX7ejWrbIcXKtIwcPayBOxo1QYbs74ET1cEzVutYj3OJCOGfsuh CTu5DOXLTJm/H33CgLkG/Kvh0iHt6pYUtvLl+d4f/0yW X-Google-Smtp-Source: APXvYqydGjLnpIgBeFvduCSbYtg3JjNzxlB1Je1Cvj48wwkHWZeD85diZdkA+GZkFqF2/iBP658RwELHqA1hYP6aLKY= X-Received: by 2002:aca:c3c2:: with SMTP id t185mr3348633oif.26.1582312788863; Fri, 21 Feb 2020 11:19:48 -0800 (PST) MIME-Version: 1.0 From: Jim Murphy Date: Fri, 21 Feb 2020 11:19:37 -0800 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 configure an Ethernet Driver to ignore the Ethertype 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, I was wondering if there is a way to get the Ethernet driver to ignore the Ethertype. The problem I am having is that I am dealing with a switch chip that is redirecting packets to the processor via an offload ethernet device. Before offload the switch chip adds a header that pushes the DA into the spot where the EtherType is normally. As a result, the ethertype is essentially a random value so some packets will look like that have a snap header and the driver will conclude that the packet is corrupted I presume. I am working with the IXGBE driver. Any ideas? Thanks, Jim