From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qg0-f54.google.com (mail-qg0-f54.google.com [209.85.192.54]) by dpdk.org (Postfix) with ESMTP id 999D39A8A for ; Tue, 16 Feb 2016 12:44:44 +0100 (CET) Received: by mail-qg0-f54.google.com with SMTP id y89so130677279qge.2 for ; Tue, 16 Feb 2016 03:44:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=7o965UQAiLoQ0yS9u8EwufFekkRzMc1WqR+kpc4sbIM=; b=tniH7mzT2/nxmvVcCkaIMa0E6tmqgB9N9o6EnVR/xlQ5G2AhvHGIKanEQ/Lnex0Ixw Uje3+AP/5FexBFbAYaXWWvWxEsLl/irv6mipuBHWQaogWEY9BbIFieK1J9MGMLiHVVQz DfElJJSm4X5dpdsMqgnEbHnQl/fJybcAAdCDx6k/usiatcOfB7jC/ErxgtCjSlKTJ/I6 fmoIRHwCSKygfnTOBwAEazh005285Fm0I52LlTsAJyUcVN6iAvAhi4colN/8gHaGus1/ 2mMQqElGx/Xpk2F9Ul+kkGHdYTMwvV/z1FZ8sdgJGFzJkoJrMWDsRmb+3TaKF09o9tmF 9Ndw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=7o965UQAiLoQ0yS9u8EwufFekkRzMc1WqR+kpc4sbIM=; b=UkhHoxjqw3BY6SXCbOihpkP2uz5dgjertmfWBx0KhAJVt8S3LB2uTFjJx/NqUe9I5l RrS07qQqmXxm4Zq0aQoCNuDL/9OSzSMaEH0Ki3wMa+o+K+juoKam6dX+VPvCB8I4xLSc lytdwHgOfR36AALzqxnF0g5YZffQybQlUkKrRCeIZN5rgboeuZW/Y7FsrYS9YNCoa6uL j2xQNN1N+KNRAAMVrRD/2l4gT96RMtkQvbRI7ZuE77ypBxtux3QRn88RkkL9u31wrATO TAG5ldGLWYIYaB2hjUTzMwnqYHZMrlGIM27p2WC+9PyVV7USk+0mW9KvvVldiU3vG2vq fyZw== X-Gm-Message-State: AG10YOTGDw7v0ZCdjnj70HHhXqXtmKodT2cAj5gReReENf9bMJEYidjai36M9EFruSn8mFvM+e5m7/Z0ODgMsA== MIME-Version: 1.0 X-Received: by 10.140.91.115 with SMTP id y106mr2945624qgd.20.1455623084213; Tue, 16 Feb 2016 03:44:44 -0800 (PST) Received: by 10.140.20.2 with HTTP; Tue, 16 Feb 2016 03:44:44 -0800 (PST) Date: Tue, 16 Feb 2016 17:14:44 +0530 Message-ID: From: Rahul Ramachandran To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] IPV6 RSS not working in i40e X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Feb 2016 11:44:44 -0000 Hi, I am using dpdk 2.1. I see the hash flags are unified compared to my previous version 1.8. But with DPDK 2.1 in Fortville NIC's, I see ipv6 RSS is not working, all the frames are queued to first queue even though I have 16 queues (RETA table looks correct). For IPV4 RSS works as expected in Fortville. Also in 10G, both ipv4 and ipv6 RSS works. My RSS configuration is : rss_hf = ETH_RSS_IP | ETH_*RSS* _NONFRAG_IPV4_TCP | ETH_*RSS*_NONFRAG_IPV4_UDP I see ETH_RSS_IP contains Layer3 hash flags for ipv6. #define ETH_*RSS*_IP ( \ ETH_*RSS*_IPV4 | \ ETH_*RSS*_FRAG_IPV4 | \ ETH_*RSS*_NONFRAG_IPV4_OTHER | \ ETH_*RSS*_*IPV6* | \ ETH_*RSS*_FRAG_*IPV6* | \ ETH_*RSS*_NONFRAG_*IPV6*_OTHER | \ ETH_*RSS*_*IPV6*_EX) But when I query the hash flags, I get the value of 8888. I understand while configuring RSS HF in the 40G NIC, we mask the configured RSS HF with NIC specific mask flags before writing to NIC. But I am not sure after masking it is taking the flags for IPV6. The mask or I40E: I40E_*RSS*_OFFLOAD_ALL . I see this conatins the flags ETH_*RSS*_FRAG_*IPV6 & *ETH_*RSS*_NONFRAG_*IPV6*_OTHER. Are you aware of any such problems? Please let me know if you need more information. Thanks