From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 943D7C010A3 for ; Tue, 5 Nov 2019 10:26:59 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 0735B206BA for ; Tue, 5 Nov 2019 10:26:58 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0735B206BA Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ntt-tx.co.jp Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 574A02BC8; Tue, 5 Nov 2019 11:26:57 +0100 (CET) Received: from dish-sg.nttdocomo.co.jp (dish-sg.nttdocomo.co.jp [202.19.227.74]) by dpdk.org (Postfix) with ESMTP id EE8F02BBE for ; Tue, 5 Nov 2019 11:26:54 +0100 (CET) X-dD-Source: Outbound Received: from zssg-mailmd102.ddreams.local (zssg-mailmd900.ddreams.local [10.160.172.63]) by zssg-mailou103.ddreams.local (Postfix) with ESMTP id CAD6B1200F4; Tue, 5 Nov 2019 19:26:52 +0900 (JST) Received: from t131sg-mailcc12.ddreams.local (t131sg-mailcc12.ddreams.local [100.66.31.87]) by zssg-mailmd102.ddreams.local (dDREAMS) with ESMTP id <0Q0H019KBROSED30@dDREAMS>; Tue, 05 Nov 2019 19:26:52 +0900 (JST) Received: from t131sg-mailcc12 (localhost [127.0.0.1]) by t131sg-mailcc12.ddreams.local (unknown) with SMTP id xA5AQqRd012775; Tue, 5 Nov 2019 19:26:52 +0900 Received: from zssg-mailmf105.ddreams.local (unknown [127.0.0.1]) by zssg-mailmf105.ddreams.local (Postfix) with ESMTP id 0280A7E6034; Tue, 5 Nov 2019 19:26:32 +0900 (JST) Received: from zssg-mailmf105.ddreams.local (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 016508E605D; Tue, 5 Nov 2019 19:26:32 +0900 (JST) Received: from localhost (unknown [127.0.0.1]) by IMSVA (Postfix) with SMTP id 004548E6058; Tue, 5 Nov 2019 19:26:32 +0900 (JST) X-IMSS-HAND-OFF-DIRECTIVE: localhost:10026 Received: from zssg-mailmf105.ddreams.local (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 7977D8E6052; Tue, 5 Nov 2019 19:26:31 +0900 (JST) Received: from zssg-mailua102.ddreams.local (unknown [10.160.172.62]) by zssg-mailmf105.ddreams.local (Postfix) with ESMTP; Tue, 5 Nov 2019 19:26:31 +0900 (JST) Received: from [10.87.198.18] (unknown [10.160.183.129]) by zssg-mailua102.ddreams.local (dDREAMS) with ESMTPA id <0Q0H00ZZIRNX2N70@dDREAMS>; Tue, 05 Nov 2019 19:26:21 +0900 (JST) Date: Tue, 05 Nov 2019 19:26:21 +0900 From: Hideyuki Yamashita In-reply-to: References: <20191031185133.4C1D.17218CA3@ntt-tx.co.jp_1> Message-id: <20191105192621.4C26.17218CA3@ntt-tx.co.jp_1> MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Mailer: Becky! ver. 2.74.02 [ja] X-TM-AS-GCONF: 00 To: Slava Ovsiienko Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH 0/7] net/mlx5: support for flow action on VLAN header 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" Dear Slava, Thanks for your response. Inputting other flows failed while some flows are created. Please help on the following two cases. 1) I would like to detag vlan tag which has specific destionation MAC address. No condition about vlan id value. testpmd> flow create 0 ingress group 1 pattern eth dst is AA:AA:AA:AA:AA:AA / vlan / any / end actions of_pop_vlan / queue index 1 / end Caught error type 10 (item specification): VLAN cannot be empty: Invalid argument testpmd> flow create 0 ingress group 1 pattern eth dst is AA:AA:AA:AA:AA:AA / vlan vid is 100 / end actions of_pop_vlan / queue index 1 / end Flow rule #0 created 2) I would like to entag vlan tag testpmd> flow create 0 egress group 1 pattern eth src is BB:BB:BB:BB:BB:BB / end actions of_push_vlan ethertype 0x8100 / of_set_vlan_vid vlan_vid 100 / of_set_vlan_pcp vlan_pcp 3 / end Caught error type 16 (specific action): cause: 0x7ffdc9d98348, match on VLAN is required in order to set VLAN VID: Invalid argument Thanks! BR, Hideyuki Yamashita NTT TechnoCross > > -----Original Message----- > > From: Hideyuki Yamashita > > Sent: Thursday, October 31, 2019 11:52 > > To: Slava Ovsiienko > > Cc: dev@dpdk.org > > Subject: Re: [dpdk-dev] [PATCH 0/7] net/mlx5: support for flow action on > > VLAN header > > > > Dear Slava, > > > > Your guess is corrrect. > > When I put flow into Connect-X5, it was successful. > Very nice. > > > > > General question. > As we know - general questions are the most hard ones to answer ??. > > > Are there any way to input flow to ConnectX-4? > As usual - with RTE flow API. Just omit dv_flow_en, or specify dv_flow_en=0 > and mlx5 PMD will handle RTE flow API via Verbs engine, supported by ConnectX-4. > > > In another word, are there any way to activate Verb? > > And which type of flow is supported in Verb? > Please, see flow_verbs_validate() routine in the mlx5_flow_verbs.c, > it shows which RTE flow items and actions are actually supported by Verbs. > > With best regards, Slava > > > > > > ----------------------------------------------------------- > > tx_h-yamashita@R730n10:~/dpdk-next-net/x86_64-native-linuxapp- > > gcc/app$ sudo ./te stpmd -c 0xF -n 4 -w 04:00.0,dv_flow_en=1 --socket- > > mem 512,512 --huge-dir=/mnt/h > > uge1G --log-level port:8 -- -i --portmask=0x1 --nb-cores=2 --txq=16 --rxq=16 > > [sudo] password for tx_h-yamashita: > > EAL: Detected 48 lcore(s) > > EAL: Detected 2 NUMA nodes > > EAL: Multi-process socket /var/run/dpdk/rte/mp_socket > > EAL: Selected IOVA mode 'PA' > > EAL: Probing VFIO support... > > EAL: PCI device 0000:04:00.0 on NUMA socket 0 > > EAL: probe driver: 15b3:1017 net_mlx5 > > net_mlx5: mlx5.c:1852: mlx5_dev_spawn(): can't query devx port 1 on device > > mlx5_ 1 > > > > Interactive-mode selected > > > > testpmd: create a new mbuf pool : n=171456, > > size=2176, socke t=0 > > testpmd: preferred mempool ops selected: ring_mp_mc > > testpmd: create a new mbuf pool : n=171456, > > size=2176, socke t=1 > > testpmd: preferred mempool ops selected: ring_mp_mc > > > > Warning! port-topology=paired and odd forward ports number, the last port > > will p air with itself. > > > > Configuring Port 0 (socket 0) > > Port 0: B8:59:9F:C1:4A:CE > > Checking link statuses... > > Done > > testpmd> > > testpmd> flow create 0 ingress group 1 priority 0 pattern eth dst is > > 00:16:3e:2 e:7b:6a / vlan vid is 1480 / end actions of_pop_vlan / queue > > index 0 / end > > Flow rule #0 created > > testpmd> > > --------------------------------------------------------------------------------------------- > > ----------------- > > > > BR, > > Hideyuki Yamashita > > NTT TechnoCross > > > > > Hi, Hideyuki > > > > > > > -----Original Message----- > > > > From: Hideyuki Yamashita > > > > Sent: Wednesday, October 30, 2019 12:46 > > > > To: Slava Ovsiienko > > > > Cc: dev@dpdk.org > > > > Subject: Re: [dpdk-dev] [PATCH 0/7] net/mlx5: support for flow > > > > action on VLAN header > > > > > > > > Hello Slava, > > > > > > > > Thanks for your help. > > > > I added magic phrase. with chaging PCI number with proper one in my > > env. > > > > > > > It changes situation but still result in error. > > > > > > > > I used /usertools/dpdk-setup.sh to allocate hugepage dynamically. > > > > Your help is appreciated. > > > > > > > > I think it is getting closer. > > > > tx_h-yamashita@R730n10:~/dpdk-next-net/x86_64-native-linuxapp- > > > > gcc/app$ > > > > sudo ./testpmd -c 0xF -n 4 -w 03:00.0,dv_flow_en=1 --socket-mem > > > > 512,512 - -huge-dir=/mnt/h uge1G --log-level port:8 -- -i > > > > --portmask=0x1 --nb-cores=2 > > > > > > mlx5 PMD supports two flow engines: > > > - Verbs, this is legacy one, almost no new features are being added, just > > bug fixes, > > > provides slow rule insertion rate, etc. > > > - Direct Rules, the new one, all new features are being added here. > > > > > > (We had one more intermediate engine - Direct Verbs, it was dropped, > > > but prefix dv in dv_flow_en remains ??) > > > > > > Verbs are supported over all NICs - ConnectX-4,ConnectX-4LX, ConnectX-5, > > ConnectX-6, etc. > > > Direct Rules is supported for NICs starting from ConnectX-5. > > > "dv_flow_en=1" partameter engages Direct Rules, but I see you run > > > testpmd over 03:00.0 which is ConnectX-4, not supporting Direct Rules. > > > Please, run over ConnectX-5 you have on your host. > > > > > > As for error - it is not related to memory, rdma core just failed to > > > create the group table, because ConnectX-4 does not support DR. > > > > > > With best regards, Slava > > > > > > > --txq=16 --rxq=16 > > > > EAL: Detected 48 lcore(s) > > > > EAL: Detected 2 NUMA nodes > > > > EAL: Multi-process socket /var/run/dpdk/rte/mp_socket > > > > EAL: Selected IOVA mode 'PA' > > > > EAL: Probing VFIO support... > > > > EAL: PCI device 0000:03:00.0 on NUMA socket 0 > > > > EAL: probe driver: 15b3:1015 net_mlx5 > > > > net_mlx5: mlx5.c:1852: mlx5_dev_spawn(): can't query devx port 1 on > > > > device > > > > mlx5_3 > > > > > > > > Interactive-mode selected > > > > testpmd: create a new mbuf pool : n=171456, > > > > size=2176, socket=0 > > > > testpmd: preferred mempool ops selected: ring_mp_mc > > > > testpmd: create a new mbuf pool : n=171456, > > > > size=2176, socket=1 > > > > 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: B8:59:9F:DB:22:20 > > > > Checking link statuses... > > > > Done > > > > testpmd> flow create 0 ingress group 1 priority 0 pattern eth dst is > > > > testpmd> 00:16:3e:2e:7b:6a / vlan vid is 1480 / end actions > > > > testpmd> of_pop_vlan / queue index 0 / end > > > > Caught error type 1 (cause unspecified): cannot create table: Cannot > > > > allocate memory > > > > > > > > > > > > BR, > > > > Hideyuki Yamashita > > > > > >