From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f171.google.com (mail-lj1-f171.google.com [209.85.208.171]) by dpdk.org (Postfix) with ESMTP id 39B031B483 for ; Wed, 9 Jan 2019 15:36:35 +0100 (CET) Received: by mail-lj1-f171.google.com with SMTP id k15-v6so6656791ljc.8 for ; Wed, 09 Jan 2019 06:36:35 -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=Az2sJ97qkOcrIRupp0OZKTd9T9gpeeUJ5xXV5As+GnU=; b=e78JSvYCbwIaeAVjuF0jMeiSrUzuR7P6uls8JNiBEkodXm9yUgAWVjfz10z9o0fL0O oOE1XsTpb5NmyODcObMaWnzRyWwVixYoL5z3GQCUjhL1XwmJe+axF9Ed1G2TxLjwiUkH rjhZN691cuIIga1OhFX8GWGO4Jw+NcHwsgZ7atTtqcoTYj2kcEPJVmI3iD4vEKX1IZ4r hQ4YheSQhedrg25SO/xMJkGlQYwIJPGB+76inkPq4Bth/WhIcr+KMbA3xQAXRUJ51j3/ VyXlY2KrFZRbI5kWrroAn19R+ip+lkW1Fzq/bBKx8IVnuXZ6cjRU2Q2MYv5VzHigrJzH u/sA== 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=Az2sJ97qkOcrIRupp0OZKTd9T9gpeeUJ5xXV5As+GnU=; b=gtQUCrgpUrtulcoMWp5NJEK8d+1YYJaxYoB5mwP7Qkif6W3ASSnNAVVvFVAoYo5Cit 2fXhimv0xBnn+BSV2KsGCVZfR9tIir5Dr5KijX50MHF8tJtxNoAaQ7zTU2Q171rlnRVV vqwNKW93c1R35wAKPrYw/mfRp083KDyopQ7FPP5DYYsq3JjzxIf7RRx7tdFz3xllO8Mg VZgpe/OK06Je3ZQvRRONKm8dKKVwWyaFixBBgQ+aaYODJboUD0BycjpzQfwYg9cGW9rU FDPC6gbBZ78unaIQPK49kXT/qZQV1rIKEMOuE2CVq9oorFayAgBzWOMztnd/GIoCULuA ekiA== X-Gm-Message-State: AJcUukf0G2VXgfwXRMVlqrajJLraObeQvcF9PWwIDQvbqntWStwKt27Z SBFp1I1mnnqfnyJG9/ISMtScHqU1SrCKDlTez5uvizLm X-Google-Smtp-Source: ALg8bN6i3Lj4MNAkntQ6aNUt/QBJQ9lDOn9vqFKrd2vIxi+HZlHMH3sjW9dWy+tvASWLRpiCTa2RJLtl4XQD8W3id2E= X-Received: by 2002:a2e:6e10:: with SMTP id j16-v6mr3614778ljc.84.1547044594352; Wed, 09 Jan 2019 06:36:34 -0800 (PST) MIME-Version: 1.0 From: Uiu Uioreanu Date: Wed, 9 Jan 2019 16:36:23 +0200 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: [dpdk-users] rte flow does not work on X550 - "Not supported by L2 tunnel filter" 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: Wed, 09 Jan 2019 14:36:35 -0000 Hi, I am trying to use rte flow on a X550 (ixgbe) and it does not work. For example, I used testpmd (sudo ./testpmd -c 0xf -n 1 -- -i) to validate some simple flow rules: - flow validate 0 ingress pattern eth / ipv4 / udp / end actions drop / end - flow validate 0 ingress pattern eth / ipv4 / udp / end actions end - flow validate 0 ingress pattern eth / end actions drop end - etc Every time, I receive "caught error type 9 (specific pattern item): cause: 0x7ffddca42768, Not supported by L2 tunnel filter". I also tried to make a sample application to use rte flow, but it also gives the error 9 and the "Not supported by L2 tunnel filter" message. I don't understand what the problem is. Is the pattern from the flow validate command wrong? Does the port need any additional configuration? (except from binding a X550 NIC to igb_uio/uio_pci_generic)? I am using DPDK 17.11. Thanks, Uiu