From patchwork Wed Jul 15 21:22:21 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 74135 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B339BA0548; Wed, 15 Jul 2020 23:22:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 419E12C58; Wed, 15 Jul 2020 23:22:38 +0200 (CEST) Received: from mail-pf1-f178.google.com (mail-pf1-f178.google.com [209.85.210.178]) by dpdk.org (Postfix) with ESMTP id 325332C30 for ; Wed, 15 Jul 2020 23:22:37 +0200 (CEST) Received: by mail-pf1-f178.google.com with SMTP id a23so1061169pfk.13 for ; Wed, 15 Jul 2020 14:22:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=5+/Er7t4E7F26upJ2VQZmordYyeNgbIO/xnbtEoIjBY=; b=GYnHi6FJekN/uvYAOhqFsjEvxkmlpUe3AXM+jIbXnXBG5YjCjUR21X6sIjKH+9pK9V r+Djro6QNUbquDZih1HWuSSpy+/8rSqhgJMrH5QrFxvppbx/nsCK3IVVBZOQE/rsgQje H2PUUFoGK7KqsPwERPaccYgnS+gPo7OcRxi6jme0ldv03rszcOs4e7898DlMcLArzLRM npH7QWk5U8ML1VRfsSOA5NrnvJodhwJr+MzAPg/sVEueNDkH3AiL/0H9+rmB4A97t5qA 9iTiHmuaLFB6qnubtWza915y3XRjfUWRVsQf5ymd4mfDIvQk7J6zh6DzzE3tvxxzRre1 25Zg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=5+/Er7t4E7F26upJ2VQZmordYyeNgbIO/xnbtEoIjBY=; b=MM+n9B0v14h4AiXo/nL+DH5gUL85kRBqTBrxlHClH1sxQrUACyJJI1xHEpmDxWa54/ GFd+vxy7URYVKCL6Kb7IinMkhPoi0Ov50vJnYs0+/h7Nncr17eUwZ+3Y5M0rZ3Uehpcn 4YC//lN77JmGPwnq2BWM5DA0qe53QuUBvtwrEJux3wL7BJOE6T/eOTnlK6Ne/eB08frR Qab6RBUEueqpBSyLU949PgzHh1SFskiGk1nE7Ndu2oRWkqFF2PW42uEDiKEcwoyYVRd1 A9mrTzLuV+5oAeOiy0tPYf1MaOi2Bx42eKWPabs5AjMLSpHHIkYDnfKm5kXYt6pNVjIr 9gFQ== X-Gm-Message-State: AOAM530PvOI3g7pFPiyqtN4Tji35gptKO7oo1P0aIaTG2Uc3xh4/ayVE PBV6R6U6mrNaszN76npHnGRIAw== X-Google-Smtp-Source: ABdhPJx4fGsbNjAgdu62zyKc7Sx9KBSGjayIPLohPnN8GBGPkyBXzQnAmVSOStt47iJINBudqXbz2Q== X-Received: by 2002:a63:4545:: with SMTP id u5mr1393198pgk.229.1594848156048; Wed, 15 Jul 2020 14:22:36 -0700 (PDT) Received: from hermes.corp.microsoft.com (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id s89sm2932600pjj.28.2020.07.15.14.22.34 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 15 Jul 2020 14:22:35 -0700 (PDT) From: Stephen Hemminger To: maryam.tahhan@intel.com, reshma.pattan@intel.com, hemant.agrawal@nxp.com Cc: dev@dpdk.org, Stephen Hemminger Date: Wed, 15 Jul 2020 14:22:21 -0700 Message-Id: <20200715212228.28010-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200506193741.24117-1-stephen@networkplumber.org> References: <20200506193741.24117-1-stephen@networkplumber.org> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v3 0/7] app/proc-info enhancments X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The current proc-info command is useful for diagnosing issues with external DPDK applications, but the display is limited and somewhat ugly. This patchset adds some enhancements which show more info and suppress unnecessary stuff. v3 - consolidate chages for displaying crypto info v2 - fix checkpatch complaints Hemant Agrawal (1): app/proc-info: add crypto security context info Stephen Hemminger (6): app/proc-info: remove unused logtype #define app/proc-info: eliminate useless borders app/proc-info: hide EAL info messages app/proc-info: add more info to show_ports app/proc-info: dump rx and tx descriptor info app/proc-info: provide way to request info on owned ports app/proc-info/Makefile | 3 + app/proc-info/main.c | 368 +++++++++++++++++++++++++++-------------- 2 files changed, 250 insertions(+), 121 deletions(-)