From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vc0-f177.google.com (mail-vc0-f177.google.com [209.85.220.177]) by dpdk.org (Postfix) with ESMTP id 3F50B559C for ; Fri, 5 Dec 2014 20:30:42 +0100 (CET) Received: by mail-vc0-f177.google.com with SMTP id ij19so620670vcb.36 for ; Fri, 05 Dec 2014 11:30:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=1Mn+4uJ5zz+TzFbtJzTC5PIH6w5WR7tmZilqkXNOb1s=; b=qqlS6Lp+InjVRGbnpCol3+bUaxw6RXVGDQJDiof5QGpCB1e1p/fQ364f3ZYXRIXEip ROUjw1Fcmp18aK6UCu8gC+ULzaLfJSUj2l/WAAFqYdWzrikAm9g41ApD/G8TXz+TkqTn oWYoHruucSDivdFCKYlBfbVnZK3tjol3enyVVak/w6DufGk6AALeNfdghwoSstdDusNS rNn4p007G2YKFsFFMOumwrdDNN70BPMbKfEGkmSVEbMZvkGpX+cCOKr/TuNTk+xZ1gZA c6onTIX3Kan/NSsBoSBvKuLO0L6YXmVIC3LqtI0s1j6JFDAeYf8MijGg7auFnIS4hiNj 4nRQ== MIME-Version: 1.0 X-Received: by 10.52.228.67 with SMTP id sg3mr8910400vdc.2.1417807841664; Fri, 05 Dec 2014 11:30:41 -0800 (PST) Received: by 10.52.117.240 with HTTP; Fri, 5 Dec 2014 11:30:41 -0800 (PST) Date: Fri, 5 Dec 2014 11:30:41 -0800 Message-ID: From: Malveeka Tewari To: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] rte_pmd_init_all() with DPDK 1.7.0 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: Fri, 05 Dec 2014 19:30:42 -0000 Hi all I have a very basic DPDK app that runs in two modes: sender and sniffer. In the sender mode, the app just reads data from a shared memory buffer and sends packets out on a port using rte_eth_tx_burst. In the sniffer mode, the app polls for incoming packets on a port using rte_eth_rx_burst and writes them to a shared memory buffer. I was using DPDK-1.6.0 initially and everything worked fine. However, I recently upgraded to DPDK 1.7.0.For that, I had to comment out the rte_pmd_init_all() method for the app to compile successfully. Now, the sender mode still works fine, but in the sniffer mode, the app is not able to receive any packet. Am I missing any step in moving from DPDK 1.6.0 to DPDK 1.7.0? Is there a way to debug why the app is not receiving packets with the DPDK 1.7.0 library? Thanks! Malveeka