From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D3575A0547; Sun, 7 Feb 2021 10:16:55 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57A6240147; Sun, 7 Feb 2021 10:16:55 +0100 (CET) Received: from mail.ut.ac.ir (mail.ut.ac.ir [80.66.177.10]) by mails.dpdk.org (Postfix) with ESMTP id 1807740146 for ; Sun, 7 Feb 2021 10:16:53 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.ut.ac.ir (Postfix) with ESMTP id 149C41DB888 for ; Sun, 7 Feb 2021 12:46:51 +0330 (+0330) Received: from mail.ut.ac.ir ([127.0.0.1]) by localhost (mail.ut.ac.ir [127.0.0.1]) (amavisd-new, port 10024) with LMTP id l5dDnnYt_1q8 for ; Sun, 7 Feb 2021 12:46:50 +0330 (+0330) Received: from mail.ut.ac.ir (mail.ut.ac.ir [194.225.0.10]) by mail.ut.ac.ir (Postfix) with ESMTP id 6753C1DB881 for ; Sun, 7 Feb 2021 12:46:50 +0330 (+0330) MIME-Version: 1.0 Date: Sun, 07 Feb 2021 12:46:50 +0330 From: "mirzaei.reza" To: dev@dpdk.org Message-ID: <85f763d093a3d6e5a7a73f8eee9aa0c1@ut.ac.ir> X-Sender: mirzaei.reza@ut.ac.ir User-Agent: Roundcube Webmail/1.3.6 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: [dpdk-dev] building l2fwd-crypto example from Makefile X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Hello, I have a problem to build l2fwd-crypto example using its Makefile. I build it using Makefile according to this [1] tutorial, when i run the compiled file using the following command: ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_mb,socket_id=0,max_nb_sessions=128" \ -- -p 1 --cdev SW --chain CIPHER_HASH --cipher_algo "aes-cbc" --auth_algo "sha1-hmac" I get the follwing error: EAL: Detected 16 lcore(s) EAL: Detected 1 NUMA nodes EAL: FAILED TO PARSE DEVICE "CRYPTO_AESNI_GCM" EAL: UNABLE TO PARSE DEVICE 'CRYPTO_AESNI_GCM,SOCKET_ID=0,MAX_NB_SESSIONS=128' EAL: ERROR - EXITING WITH CODE: 1 CAUSE: INVALID EAL ARGUMENTS Could anyone help me to solve this problem? It's worth to noting that when i build it using meson and ninja as the following, it works successfuly. meson -Dexamples=l2fwd-crypto build Thanks in advance Links: ------ [1] https://doc.dpdk.org/guides-20.11/cryptodevs/aesni_gcm.html