From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f48.google.com (mail-pb0-f48.google.com [209.85.160.48]) by dpdk.org (Postfix) with ESMTP id 324B32A7 for ; Thu, 27 Jun 2013 02:21:18 +0200 (CEST) Received: by mail-pb0-f48.google.com with SMTP id ma3so128318pbc.7 for ; Wed, 26 Jun 2013 17:21:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding :x-gm-message-state; bh=BZvDqdMcIKlcml+WiVBI0olDT0fnPyHLugiaojtyYFg=; b=a48+TtZaXd2sRrz8AC9b5vAmHOiTYI+L7JXbchN0k/VYjiKiPr8USplR7MiJX14GDE o2vbNvzN/ujZHVkJ5wSo5d6Z94gr0N0NLwsalKoEzm9cjbFQCv177SDFXnMwLGQh2LTQ hfnZt5TwYQwmwYNK7LizYUYxQoR/Dh1tE90UOkMI5gGPGQ3QauwUJatbAb2YQv8Dhk9j EH2VjPidJ2Ui29AEM9T2hJ/P9b6rXLWHEg5RoO7Tid9UXpQTMkzHkkPqXdtycHWfJ41E EOJmrxcwPg/O/9Gqh0Y19KbKfKpW8NAbuipGgzqH6vbOd3vYdIvU7EMJwnYAJmBLTew0 K4gw== X-Received: by 10.66.8.138 with SMTP id r10mr3236098paa.55.1372292491711; Wed, 26 Jun 2013 17:21:31 -0700 (PDT) Received: from nehalam.linuxnetplumber.net (static-50-53-71-109.bvtn.or.frontiernet.net. [50.53.71.109]) by mx.google.com with ESMTPSA id fr1sm320397pbb.26.2013.06.26.17.21.30 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 26 Jun 2013 17:21:31 -0700 (PDT) Date: Wed, 26 Jun 2013 17:21:27 -0700 From: Stephen Hemminger To: Peter Chen Message-ID: <20130626172127.7131b0bd@nehalam.linuxnetplumber.net> In-Reply-To: References: X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQkAJSypXUevQk0QMpmvH98nf4dxSz9gssvwLCImUrD23g9pUWlUMwPLjrsAid9VO71EsQqO Cc: dev@dpdk.org Subject: Re: [dpdk-dev] Where is the Kernel NIC interface example in the source code? 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: Thu, 27 Jun 2013 00:21:18 -0000 On Wed, 26 Jun 2013 16:54:06 -0700 Peter Chen wrote: > This is in the sample application guide. I want to use tcpdump on the dpdk > port, however its not in the examples folder of the source code...was it > accidentally left out? When you use DPDK, the application gets raw control over the hardware. The kernel device (used by tcpdump) is gone. Since it is a pure application with responsibility for everything, you could write a capture application that writes a pcap format file. Part of the downside of something like DPDK is that sharing device with system is hard.