From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f169.google.com (mail-wr0-f169.google.com [209.85.128.169]) by dpdk.org (Postfix) with ESMTP id 2DC52271; Fri, 7 Jul 2017 13:58:17 +0200 (CEST) Received: by mail-wr0-f169.google.com with SMTP id 77so43804640wrb.1; Fri, 07 Jul 2017 04:58:17 -0700 (PDT) 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=CbOam7qpG3nxxS5jaaxrXcSF4UO8V5wWMtRV7yzhCFo=; b=IdoA+4znj9rv6/ZM5YHSVz+8aMAYlbUH44AKT8Ea0s8UqJEWu1W+fb5IjpBCVXIoma CsHwzuW81hWGZ26YHjyg5q8oSyj2n2GE/CtylG+C3qbEt0rW1/T144HjUigr7pUdZ9TI s2ddKHvn+t9l3sbbzWwLKaa0g5+ENLsNHSnRcxemhU957n0VdMytHim+BoprKFLgAMOX s3zxyEzTlEPKRP4ByTz97GTzwQ7g+Bcl4LvUDZpNAwDIFYzdeAK9nz/cPlMYqkoInwBL Ea2e3hv0k5topbHu0t1hMPKpaPzEYz4xQnxLyW3/OWAnhi5r0wL35+YigSz8rwqAibBc y9Qg== 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=CbOam7qpG3nxxS5jaaxrXcSF4UO8V5wWMtRV7yzhCFo=; b=CX2GLuNuSkuI1LLIAf8KfZhqQ+WaE03xS4n1T4rkgte5YFVlst/pZ8FxuT6OHeu673 cMWYdFbDOYXlvtARip8FpBfWOubxomw1Be8m4Dax9lTLDWFn4rgBefkupNM7WlAny4OO dljDwd8R0OCsYyGH0LlX2z9sF4t8BCeI4R8wtx+gTcQzxmpVSKmGEqx5BO/o/8pwxRRY Lc5TspBoxHJzmzs76DxgQ5Mq9BuCYT8foovUYrafuICd4ZSEO7qsjwWFaTtrhus07EM8 1f8Q2pn92noDw9+myhXKvPR5hH65QE1yksv7CfuWNMC7e6J8uOGX4SZpSTIQZ3UTtL1J TsDg== X-Gm-Message-State: AIVw113/t7D8+Txh07HI85HaBqEnl8lC1R7IDy9mnWxhrTFpSQWDdjKD Qd/pwjMv/9gY5HmBg8tqqA8XMsAwr0A3 X-Received: by 10.28.128.67 with SMTP id b64mr2076781wmd.79.1499428696609; Fri, 07 Jul 2017 04:58:16 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.143.75 with HTTP; Fri, 7 Jul 2017 04:58:16 -0700 (PDT) From: Mohanraj Venkat Date: Fri, 7 Jul 2017 17:28:16 +0530 Message-ID: To: dev@dpdk.org, users@dpdk.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] How to set the multiple queues per port in Virtual Machine 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: Fri, 07 Jul 2017 11:58:17 -0000 Hi, We are using the ubuntu VM in openstack environment. We have set the below option in Openstack to enable multi queue per port. hw_vif_multiqueue_enabled=true After launching the instance, we set the queue using the command "ethtool -L ens4 combined 3". While checking the same as below. root@dpdk-multi:~/dpdk-17.05/examples/l2fwd# ethtool -l ens4 Channel parameters for ens4: Pre-set maximums: RX: 0 TX: 0 Other: 0 Combined: 3 Current hardware settings: RX: 0 TX: 0 Other: 0 Combined: 3 After that, we are trying to run the DPDK sample l2fwd Application and getting the queues configured for the port as below. rte_eth_dev_info_get(portid, &dev_info); printf ("************* port %d nb_rxq =%d nb_txq=%d \n", portid, dev_info.nb_rx_queues, dev_info.nb_tx_queues); But It is printing as 0. The number of queues are not configured while running DPDK App. How to configure the multiple queues here ? Thanks, Mohanraj V