From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it1-f179.google.com (mail-it1-f179.google.com [209.85.166.179]) by dpdk.org (Postfix) with ESMTP id 575581E34 for ; Fri, 22 Feb 2019 08:59:50 +0100 (CET) Received: by mail-it1-f179.google.com with SMTP id z131so1768096itf.5 for ; Thu, 21 Feb 2019 23:59:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=flowmon.com; s=google; h=mime-version:from:date:message-id:subject:to; bh=YF82uojL7GsDZw1EMgSE5Y11astkxwI0aN6iKlXN/rY=; b=gX0jb9zlgtEtH2mh1oHEor4vSy1OStiIo2qgXXKIAw5YFFb1C9zjMWgZhuFXX5zhhJ 2lwSja/BMztK5F+MhvF5FL5xZL/jv3Gx3x8Nz/Q4i2E2b8VZw0SNLOGURTuqg46HYeYN vfcmeQMH53YF0Uj9ldCMTR0vMzv6yy9lcz08V2YwTxI+aM1bJonZ7zIzte3mrTXwxvkK m70321RxIZaZzPEj1/Zm10GRxMZ2CFgn1oYPLJH32wz4B31E/1jFYUlppgP8/JwYUqg/ s+Z7nECSS5Lcdr8G+/DyYER9jCvj1x27IBRgb0bTXuz2RuIjefsSpYIh23QfeQBk6OKi DE4g== 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=YF82uojL7GsDZw1EMgSE5Y11astkxwI0aN6iKlXN/rY=; b=VkjYyQtGATyBzFzAvE2LExvIbv1QL8mm7sP4QqX8GYNiwMLSP/n8jA32bnvXMyQcpz b9qgoP28OgyGazAuajOoZVF/tjtZtZuskocVrWvAC8oQHNmi2XDJoqsQMhEkaBJzJnXk nC3slg7V46qyIjqshBbJUbwQLAAQedHEBbjWvjw8HSwfw9yvd5gHOFOz+ET6WdCH4MGl uSCe5tK9VhffyBqvvckNxl/HYs0sa5slBGffFvWjXnNdvnHVwZheeTG81GTYi9e/nFhV eONSHrThVue8l+pyBDOFPZo3C8MxFMb4nNafrA3DV0zGgxs6YCbwZniUATPhdERvm8RP XvZg== X-Gm-Message-State: AHQUAuaO/ApFdPWGsV7E54g2mGlAjm4SBQkdhNCoAjdUsHj/SbwSGMgI 1HL0YtGVCXIBU3rXVEKKx+4eHVcIB1/RkXWU4t+Th2mVno4= X-Google-Smtp-Source: AHgI3IYRsjQxDX/Gf6qgNz+27+Cfg4lzY/clivB1A65GKyZHVvDNM80pXGMOJMMRcSbT4FMEDzBfxEooQqbCW2Mnmo0= X-Received: by 2002:a24:53c9:: with SMTP id n192mr1513494itb.8.1550822389507; Thu, 21 Feb 2019 23:59:49 -0800 (PST) MIME-Version: 1.0 From: =?UTF-8?B?VG9tw6HFoSBKw6Fuc2vDvQ==?= Date: Fri, 22 Feb 2019 08:59:38 +0100 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] Outer VLAN stripping X710 NIC 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: Fri, 22 Feb 2019 07:59:50 -0000 Hello DPDK Team, I am having an issue with the behavior of Intel X710 NIC and would like some clarification. When the card receives packets with QinQ (double 802.1Q) the RX_RSS based on L3 and L4 information is not working without specifying DEV_RX_OFFLOAD_VLAN_EXTEND. However, by specifying the mentioned flag, the card automatically strips outer VLAN from the packet (even without using other offload flags like DEV_RX_OFFLOAD_VLAN_STRIP) while leaving only the inner VLAN in the packet. I know that the TCI from the stripped VLAN can be found in rte_mbuf structure, but is it possible to force the card to keep the outer VLAN in the packet (and still maintain working RSS)? I do not know, whether this is an issue with DPDK design or the X710 NIC itself. I was unable to find any useful information in the card datasheet. Any clarification on this topic would be greatly appreciated. Thanks in advance. All the best Tom