From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f48.google.com (mail-oi0-f48.google.com [209.85.218.48]) by dpdk.org (Postfix) with ESMTP id 16D047D34 for ; Tue, 12 Dec 2017 18:55:12 +0100 (CET) Received: by mail-oi0-f48.google.com with SMTP id t81so14569718oih.13 for ; Tue, 12 Dec 2017 09:55:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=P8Yf05TX3Z/Ltc0FI5KDWQtZIFddEcEMcHQCpUz2QMU=; b=j5JgKiT/lFaUvSKnOoY5tt3hHa36XIZuNN8/IOu1RGNazYht1Ks4FtWUd9wDqBCGt+ MoO+p/LEbJj6njgcLJtz3dX8eKRSiMCdQsN5BqIYaciYt8iVKA/WYsEkCmAIM3RVsDVk S3tHCHeVaN5NzB/V1wXb3CdfuO+5vmjG+ZXmvYv84ZTkcIaWCQoFHSj084Un28sfqf3d 47ThmfN6v41B03hX3ZgTcqLEMghUiiH+xLMUBlH1owepFYHmCiFTY9MgvWiSeP5KjwxH LX8KZYWWq16aMxAAHNcHqLlWwuU6kMQVzTgO99DPJPL8Fk4IBVdkqFCWKT2cGQRCdNrf qRqQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=P8Yf05TX3Z/Ltc0FI5KDWQtZIFddEcEMcHQCpUz2QMU=; b=GNL/EvVfUWe7HVnJxgeR88bQltgvtdEKwpjIk2UTwoRIiW77uEmcttmNv4Mv3BWdzJ W0+s83OplbtneV+l8SirVpdI6PYBt7p2BO0/OCWBpVP0+b/2E0zUfSjKp/Fvam0FkMrO JO2ETq32BGlffz7KMKW3n1ZSwSUk4aYvJ2WNLzEZaSCfBTpXbYzK8DhDNO5QWDrZU6O2 DdAa1uGpQZtpCpdI+9w2Aw4kbOnAGYj6QtPPCK8v1oHKI73qQpffmXNIHz9O1CM0+/3+ IbYpN4+koc8Pj7dH424sOTsOpTxH0oqbb6J9B6HXIhfKToLjJhaifsqgoqZAgIEMd6FP KZxA== X-Gm-Message-State: AKGB3mIjF+BKVQpZd5yQf6z5zo+CqaC5pSd+ZBtj23Xvr9nOHb5PVtjQ FsCkixpOQ63tK5X2ZtJxRUvqVaUiRtrDFEpVT4E= X-Google-Smtp-Source: ACJfBosv9c5Fh5nhBIUROZg4rAk8ZMBGrlZZe/bSvNF0xfvWp5xmp0KeEdh7uqhVY+yUqywZp85SBASSI6DKW7zfyzQ= X-Received: by 10.202.56.65 with SMTP id f62mr3837511oia.285.1513101312213; Tue, 12 Dec 2017 09:55:12 -0800 (PST) MIME-Version: 1.0 Received: by 10.202.212.81 with HTTP; Tue, 12 Dec 2017 09:55:11 -0800 (PST) In-Reply-To: References: From: Shivaram Mysore Date: Tue, 12 Dec 2017 09:55:11 -0800 Message-ID: To: abhishek jain Cc: users@dpdk.org, Hristo.Trifonov@ul.ie, mxkvcs@rit.edu Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-users] Tx/Rx not increasing on DPDK interface 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: Tue, 12 Dec 2017 17:55:13 -0000 With the info provided, I am not sure how your OVS is setup. You may want to consider looking at my presentation and code available @ https://github.com/shivarammysore/faucetsdn-intel/tree/master/src/ubuntu/zesty/ovs_281 to get DPDK working On Tue, Dec 12, 2017 at 3:14 AM, abhishek jain wrote: > Hi Team > > I'm having one physical interface configured as DPDK interface using below > command.. > > dpdk_nic_bind --bind=igb_uio 0000:03:00.1 > > > and it succesffluy appears in DPDK configured interfaces.. > > dpdk_nic_bind --status > > Network devices using DPDK-compatible driver > ============================================ > 0000:03:00.1 'Ethernet Connection X552/X557-AT 10GBASE-T' drv=igb_uio > unused=vfio-pci,uio_pci_generic > > > Once it is configured,I'm adding this interface in OVS-DPDK bridge using > below command.. > > ovs-vsctl add-port br-int eth3 tag=4 -- set Interface eth3 > type=dpdkvhostuser options:dpdk-devargs=0000:03:00.1 > > > After this configuration,when I'm sending traffic from physical > interface,I'm not able to see any packets reaching OVS br-int . > > > tcpdump -i br-int > > Hoever once I unbind the physical interface with ixgbe driver,I'm able to > see the packets reaching OVS DPDK br-int. > > > Please let me know regarding this. > > Regars > Abhishek Jain >