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 B9CA8A04F0; Sat, 30 Nov 2019 12:19:36 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B7A4B1DBD; Sat, 30 Nov 2019 12:19:35 +0100 (CET) Received: from smtp-3.sys.kth.se (smtp-3.sys.kth.se [130.237.48.192]) by dpdk.org (Postfix) with ESMTP id A923923D for ; Sat, 30 Nov 2019 12:19:34 +0100 (CET) Received: from smtp-3.sys.kth.se (localhost.localdomain [127.0.0.1]) by smtp-3.sys.kth.se (Postfix) with ESMTP id 5235AA120; Sat, 30 Nov 2019 12:19:34 +0100 (CET) X-Virus-Scanned: by amavisd-new at kth.se Received: from smtp-3.sys.kth.se ([127.0.0.1]) by smtp-3.sys.kth.se (smtp-3.sys.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id bScfhoTPQeKO; Sat, 30 Nov 2019 12:19:33 +0100 (CET) X-KTH-Auth: barbette [2a02:a03f:4075:6000:edef:808e:612e:a89b] DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kth.se; s=default; t=1575112773; bh=iWZIfVKJNCiw56PdT5+2PBgD+pkeMtcaVyugPKTadqg=; h=To:Cc:From:Subject:Date; b=eyt6iUZWIk70uCqzXKz3EyGdAjNp1KICAM9xvhGFa7N9tgFcs/7LEanW0rnoayHSY z+LrB4752vs0dVOMkFK71uUaHTALHErhVIVMTfJGCk8NkHdK6UUuohX6GnI+tIuU+1 sWKVqw5qWZaIu5JGYPyoPSVITi2IN+C3qYHhzufU= X-KTH-mail-from: barbette@kth.se Received: from [IPv6:2a02:a03f:4075:6000:edef:808e:612e:a89b] (unknown [IPv6:2a02:a03f:4075:6000:edef:808e:612e:a89b]) by smtp-3.sys.kth.se (Postfix) with ESMTPSA id E6D1C589B; Sat, 30 Nov 2019 12:19:32 +0100 (CET) To: dev@dpdk.org Cc: Shahaf Shuler From: Tom Barbette Message-ID: Date: Sat, 30 Nov 2019 12:19:31 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: fr Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] Cannot use MLX5 groups : cannot create jump action.: Operation not supported 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi all, I'm struggling to use the group feature with MLX5. I'm using 19.08.2 for now (while https://bugs.dpdk.org/show_bug.cgi?id=371 gets fixed). I use the latest OFED (no inbox driver this time). I have dv_flow_en=1, but I still get "cannot create jump action.: Operation not supported". when I want to use the jump action or "cannot create table: Cannot allocate memory" when trying to add a rule to table 1, all of this with testpmd but my own app does not work better. sudo ~/dpdk-skylake/x86_64-native-linuxapp-gcc/app/testpmd –l 0-3 -w 0000:17:00.0,dv_flow_en=1 –n 6 -- -i EAL: Detected 36 lcore(s) EAL: Detected 2 NUMA nodes EAL: Multi-process socket /var/run/dpdk/rte/mp_socket EAL: Selected IOVA mode 'VA' EAL: Probing VFIO support... EAL: PCI device 0000:17:00.0 on NUMA socket 0 EAL: probe driver: 15b3:1017 net_mlx5 net_mlx5: can not get IB device "mlx5_0" ports number Interactive-mode selected testpmd: create a new mbuf pool : n=283456, size=2176, socket=1 testpmd: preferred mempool ops selected: ring_mp_mc testpmd: create a new mbuf pool : n=283456, size=2176, socket=0 testpmd: preferred mempool ops selected: ring_mp_mc Warning! port-topology=paired and odd forward ports number, the last port will pair with itself. Configuring Port 0 (socket 0) Port 0: 50:6B:4B:43:8A:DA Checking link statuses... Done testpmd> flow create 0 group 1 ingress pattern eth / end actions queue index 0 / end Caught error type 1 (cause unspecified): cannot create table: Cannot allocate memory testpmd> flow validate 0 group 1 ingress pattern eth / end actions queue index 0 / end Flow rule validated testpmd> flow create 0 group 0 ingress pattern eth / end actions jump group 1 / end Caught error type 16 (specific action): cannot create jump action.: Operation not supported testpmd> Thanks, Tom