From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f53.google.com (mail-oi0-f53.google.com [209.85.218.53]) by dpdk.org (Postfix) with ESMTP id CA544B3D4 for ; Wed, 13 Aug 2014 12:10:49 +0200 (CEST) Received: by mail-oi0-f53.google.com with SMTP id e131so7574720oig.12 for ; Wed, 13 Aug 2014 03:13:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=/ybkTjLQ4oeHROVvxqoakd0eI7DXcE/J2sgOL9Q1ud4=; b=QQME3cozKI2FaJhN12rT2viGRCKYKUaOgknlsdCuzlDuv6pcD7FR/kZlyqiXgCwLTz 0HOyJmXcwHFYQtFF+v46bxCq0ejeDE9SfRfs2/4oh6ug2KcH/j2gtB7tiWSqf5FDVYCh Ln50+ePeMFP4hyWKNB6ELHPunj2JiPLIQV17J+2dxTzs7XU4lgSl26K2pHad3rCX62m0 zdOwwDABaqAdcyeKQyk4af6Rgn2XLy2Az7y8LEz/trIKdezfD/Z8qswYXMeI6YGFQV2/ XJxYu6skYJDbK0wj7IuFs9mltffCjawm+7kAtJA9X6AXIPv9B4vDrjWMTuC3U0Uo4QxD wVzA== X-Gm-Message-State: ALoCoQmkY32kyg4u/pLhL8Yhb6D8WX8Xpr5v4M+S/cNlCKFL6ZZsFmFdpIUPLnstw1yBSkd+2pZD MIME-Version: 1.0 X-Received: by 10.182.142.67 with SMTP id ru3mr3661819obb.15.1407924828739; Wed, 13 Aug 2014 03:13:48 -0700 (PDT) Received: by 10.202.55.198 with HTTP; Wed, 13 Aug 2014 03:13:48 -0700 (PDT) Date: Wed, 13 Aug 2014 13:13:48 +0300 Message-ID: From: Alex Markuze To: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 Subject: [dpdk-dev] Vmxnet3 pmd X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2014 10:10:50 -0000 Hi, I Have a simple dpdk app - basically a KNI interface with the dpdk layer serving only as a pipeline. This allows me to ping between vEth0 on different VM's works great with ixgbevf. Now I moved to ESXi5.5 , Ubuntu14.4 VM (Dpdk 1.7). When running the same code* I've discovered that the polling doesn't retrieve any packets after vEth0 gents an IP. I've resolved this issue by removing the dev restart calls I had in the callback. // rte_eth_dev_stop(port_id); // ret = rte_eth_dev_start(port_id); Is this a know issue? how can I report a BUG if its not. Thanks Alex. *Except this line I needed to add to setup the TXQ. tx_conf.txq_flags |= (ETH_TXQ_FLAGS_NOMULTSEGS | ETH_TXQ_FLAGS_NOOFFLOADS);