From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vipin Varghese Subject: [PATCH v9 0/6] app/proc-info: enhance debug of proc-info tool Date: Fri, 11 Jan 2019 03:06:39 +0530 Message-ID: <20190110213645.29901-1-vipin.varghese@intel.com> References: <20190107153829.34047-2-vipin.varghese@intel.com> Cc: konstantin.ananyev@intel.com, stephen@networkplumber.org, reshma.pattan@intel.com, jasvinder.singh@intel.com, stephen1.byrne@intel.com, amol.patel@intel.com, Vipin Varghese To: dev@dpdk.org, thomas@monjalon.net, john.mcnamara@intel.com Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id AAA591B897 for ; Thu, 10 Jan 2019 16:39:56 +0100 (CET) In-Reply-To: <20190107153829.34047-2-vipin.varghese@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch adds new debug functions to existing proc-info tool. Motivation ========== DPDK proc-info tool is been widely used as secondary process to collect stats for any primary process. But these are limited to DPDK NIC ports and basic memory usage. The patch series tries to address the missing debug information for PMD by adding debug for port, traffic manager, crypto, ring and mempool. With these additional information collected, it becomes easy to analyze issues and performance variance. Status ====== Reviews and changes accomadated. ACK received for documenation and code. app/procinfo: add support for show port app/procinfo: add support for show tm app/procinfo: add support for show crypto app/procinfo: add support for debug ring app/procinfo: add support for show mempool app/procinfo: add support for iter mempool app/proc-info/main.c | 658 ++++++++++++++++++++++++++++++++- app/proc-info/meson.build | 2 +- doc/guides/tools/proc_info.rst | 32 +- 3 files changed, 688 insertions(+), 4 deletions(-) Change Log: ========== v9: - merge v8/1 and v8/2 and define about macros - Thomas Monjalon v8: - merge documenation with code - Thomas Monjalon - split patch for iter_mempool - Reshma Pattan - add ack for code - Reshma Pattan V7: - update usage text with token ":" - Reshma Pattan - reword usage for 'iter-mempool' - Reshma Pattan V6: - add mempool iterate elements option - Vipin Varghese - check for iter mempool - Vipin Varghese - add call to iter mempool - Vipin Varghese - replace or with logical or - Reshma Pathan & Konstantin Ananyev - split iter mempool - Vipin Varghese - update entry for mempool iter - Vipin Varghese - add ack for v5 - John Mcnamara - update entry for mempool iter - Vipin Varghese V5: - convert 100 to MAX_STRING_LEN - Reshma Pattan - RSS made for port - Reshma Pattan - update bdr_str to static - Stephen Hemminger - remove memset for link, dev_info, queue, stats - Stephen Hemminger - update ret to uint32_t - Reshma Pattan v4: - add space to compare - Vipin Varghese - add spacing for flag compare - Vipin Varghese V3: - change the usage details - Vipin Varghese - variables from debug to show - Vipin Varghese - update function names from debug to show - Vipin Varghese - fix meson build - Reshma Pattan - change 100 to MAX_STRING_LEN - Reshma Pattan - memset to struct elements - Reshma Pattan - printf tab space - Reshma Pattan - remove 'drop packet information' - Vipin Varghese - memset for struct elements - Vipin Varghese - code cleanup for TM - Vipin Varghese - fetch for leaf nodes if node exist - Jasvinder Singh - display MARCO to function - Reshma Pathan & Stephen Hemminger - add memset for struct elements - Reshma Pathan - change display formating of flags - Vipin Varghese - use MACRO for string - Vipin Varghese - replace space to tab in printf - Reshma Pathan - change ring display information - Vipin Varghese - update document from dbg to show - Vipin Varghese V2: - change word dbg to show - Stephen Hemminger - compare string from dbg to show - Stephen Hemminger - removed if else ladder - Vipin Varghese - redefine code format - Vipin Varghese - MACRO for display node|level - cap - Vipin Varghese - update word style for content - Vipin Varghese -- 2.17.1