From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpweb146.aruba.it (smtpweb146.aruba.it [62.149.158.146]) by dpdk.org (Postfix) with ESMTP id 0025C1041 for ; Wed, 12 Sep 2018 09:38:08 +0200 (CEST) Received: from LANZUISI-NBK ([93.146.250.201]) by smtpcmd05.ad.aruba.it with bizsmtp id aXe71y0044MU9Ql01Xe8y5; Wed, 12 Sep 2018 09:38:08 +0200 Received: from [172.16.17.123] by LANZUISI-NBK (PGP Universal service); Wed, 12 Sep 2018 09:38:08 +0100 X-PGP-Universal: processed; by LANZUISI-NBK on Wed, 12 Sep 2018 09:38:08 +0100 To: "dev@dpdk.org" From: Matteo Lanzuisi Message-ID: Date: Wed, 12 Sep 2018 09:38:06 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: it DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aruba.it; s=a1; t=1536737888; bh=qjblsnmhwdmvUyLgnJVQx2qJqEm5fqJeWG/cjF1Dw8k=; h=To:From:Subject:Date:MIME-Version:Content-Type; b=U4kuJ5zSFrTmKHMf5x24gSXmgW509gtVljyS2SdEjJ8JzXw+CRqHm3w0VRPu4MyMl ebUv7fE2TNiT3wLgGdbbFmFR2AtmHmSWy1DYutbm0VQYkCLaEVRrWHjA9WAkId72VC OV/w/quiapCXiUG6G5hutuugOlXlK5646of9YrHaMcifBNRRLcJFxZ9e2VA9+gXc/f EFJxrGoanHazdthsGD96Nwqg3+GHzhMHde/djn/Ft9DZJdBl4Urw/fzOFcgwlwym/R GiFUNdGJH0xo18K0CAihg/Q87z5SXidM5hQHsQRq/QYcqp9T0MFRGGPQsorkN10ZCj Uzk16wZSpgBwg== Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Using example flow_filtering X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2018 07:38:09 -0000 Hi all, maybe a bug or something I'm doing wrong: I'm using the example flow_filtering on a RedHat 7.5, kernel 3.10.0-862.6.3.el7.x86_64 with i40e and X710. DPDK is 18.08 and configuration is x86_64-native-linuxapp-gcc I changed the SRC_IP and DST_IP this way #define SRC_IP ((83<<24) + (175<<16) + (7<<8) + 228) /* src ip = 83.175.7.228 */ #define DEST_IP ((83<<24) + (175<<16) + (7<<8) + 226) /* dest ip = 83.175.7.226 */ for test purpose and set EMPTY_MASK to both. If I understood well, putting EMPTY_MASK on both, all incoming traffic is going to be sent to queue 1 (selected_queue) but all I have is that all packets are sent to queue 0 (MACs are 00:00:00:00:00:00 in my sample capture) src=00:00:00:00:00:00 - dst=00:00:00:00:00:00 - queue=0x0 src=00:00:00:00:00:00 - dst=00:00:00:00:00:00 - queue=0x0 src=00:00:00:00:00:00 - dst=00:00:00:00:00:00 - queue=0x0 src=00:00:00:00:00:00 - dst=00:00:00:00:00:00 - queue=0x0 Am I doing something wrong? Thank you and regards. Matteo