From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f49.google.com (mail-wg0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id F3147C34C for ; Fri, 5 Jun 2015 23:09:30 +0200 (CEST) Received: by wgbgq6 with SMTP id gq6so65381587wgb.3 for ; Fri, 05 Jun 2015 14:09:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=1y8X0e5PFGmchtEvPDCl4RE5HTpir5FBbEYCgnyornM=; b=L/WfZZvzvKiLprrW73nS9uvKpVnpVdFWDA+ZImx/PrU1Yg6uOa84LAz/7MOC5VnQDD msmKAZ6BMKdD00R4MK4nMfMPsQOTVFFZNqZZfaJsBZTCK2tx+DVPbrWGFEVa3fQ3+Cq4 UDpQeWHMlAeHU0anCbV8PPKLWzQjKhUOHCsQaiGhEiS8G2mSe7hRzAtjVVzBgUDwtQPv xI1fViTQOE/H3bcHE23I2vQNn6rV2Ck0dR+i4P0PTJnZmLx/ar2bcvpOa+CImCoIFj9k 3u2jSgoGvJod2RwlvXSCPFIKDcKGVXAozu6z57T1KLhTr7vsRwgWb8TDYCi/ibBYrOEG k1mA== X-Gm-Message-State: ALoCoQml2PkhYC1gNDsoeIs9h05eE9u8NWOXQ6pBVSPEMsCfFAz6anhB2NTBltDwQay7OESAwwpc X-Received: by 10.194.172.130 with SMTP id bc2mr9840008wjc.85.1433538570803; Fri, 05 Jun 2015 14:09:30 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id ha4sm5076385wib.0.2015.06.05.14.09.29 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 05 Jun 2015 14:09:30 -0700 (PDT) From: Thomas Monjalon To: Maryam Tahhan Date: Fri, 05 Jun 2015 23:08:37 +0200 Message-ID: <4131781.boZ19nMkdh@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1433525705-17041-5-git-send-email-maryam.tahhan@intel.com> References: <1433525705-17041-1-git-send-email-maryam.tahhan@intel.com> <1433525705-17041-5-git-send-email-maryam.tahhan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 4/4] app: replace dump_cfg with proc_info 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 Jun 2015 21:09:31 -0000 2015-06-05 18:35, Maryam Tahhan: > Extend dump_cfg to also display statistcs information for given DPDK > ports and rename the application to proc_info as it's now a utility > doing a little more than just dumping the memory information for DPDK. > > Signed-off-by: Maryam Tahhan > --- > app/Makefile | 2 +- > app/dump_cfg/Makefile | 45 ----- > app/dump_cfg/main.c | 92 --------- > app/proc_info/Makefile | 45 +++++ > app/proc_info/main.c | 525 +++++++++++++++++++++++++++++++++++++++++++++++++ > mk/rte.sdktest.mk | 4 +- It looks promising, thanks. Would you consider adding yourself as a maintainer of this app?