From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 9C3273256 for ; Mon, 25 Feb 2019 18:12:25 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Feb 2019 09:12:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,411,1544515200"; d="scan'208";a="302415873" Received: from unknown (HELO saesrv02-S2600CWR.intel.com) ([10.224.122.203]) by orsmga005.jf.intel.com with ESMTP; 25 Feb 2019 09:12:20 -0800 From: Vipin Varghese To: john.mcnamara@intel.com, marko.kovacevic@intel.com, thomas@monjalon.net, ferruh.yigit@intel.com, shreyansh.jain@nxp.com, dev@dpdk.org Cc: sanjay.padubidri@intel.com, amol.patel@intel.com, Vipin Varghese Date: Mon, 25 Feb 2019 22:42:21 +0530 Message-Id: <20190225171222.64134-2-vipin.varghese@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190225171222.64134-1-vipin.varghese@intel.com> References: <20190213054106.45163-1-vipin.varghese@intel.com> <20190225171222.64134-1-vipin.varghese@intel.com> Subject: [dpdk-dev] [PATCH v7 1/2] doc: add svg for debug and troubleshoot guide 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: , X-List-Received-Date: Mon, 25 Feb 2019 17:12:26 -0000 Add svg images for debug and troubleshoot guide. Signed-off-by: Vipin Varghese Acked-by: Marko Kovacevic --- --- doc/guides/howto/img/dtg_consumer_ring.svg | 24 ++++ doc/guides/howto/img/dtg_crypto.svg | 21 ++++ .../howto/img/dtg_distributor_worker.svg | 36 ++++++ doc/guides/howto/img/dtg_mempool.svg | 27 +++++ doc/guides/howto/img/dtg_pdump.svg | 33 ++++++ doc/guides/howto/img/dtg_producer_ring.svg | 24 ++++ doc/guides/howto/img/dtg_qos_tx.svg | 29 +++++ doc/guides/howto/img/dtg_rx_rate.svg | 25 ++++ doc/guides/howto/img/dtg_rx_tx_drop.svg | 33 ++++++ doc/guides/howto/img/dtg_sample_app_model.svg | 110 ++++++++++++++++++ doc/guides/howto/img/dtg_service.svg | 20 ++++ 11 files changed, 382 insertions(+) create mode 100644 doc/guides/howto/img/dtg_consumer_ring.svg create mode 100644 doc/guides/howto/img/dtg_crypto.svg create mode 100644 doc/guides/howto/img/dtg_distributor_worker.svg create mode 100644 doc/guides/howto/img/dtg_mempool.svg create mode 100644 doc/guides/howto/img/dtg_pdump.svg create mode 100644 doc/guides/howto/img/dtg_producer_ring.svg create mode 100644 doc/guides/howto/img/dtg_qos_tx.svg create mode 100644 doc/guides/howto/img/dtg_rx_rate.svg create mode 100644 doc/guides/howto/img/dtg_rx_tx_drop.svg create mode 100644 doc/guides/howto/img/dtg_sample_app_model.svg create mode 100644 doc/guides/howto/img/dtg_service.svg diff --git a/doc/guides/howto/img/dtg_consumer_ring.svg b/doc/guides/howto/img/dtg_consumer_ring.svg new file mode 100644 index 000000000..d8cf0c292 --- /dev/null +++ b/doc/guides/howto/img/dtg_consumer_ring.svg @@ -0,0 +1,24 @@ + + + + + + + + consumer ring + + + + Layer 1 + + + + Stage 1 + Stage 2 + Stage 3 + + + + + + diff --git a/doc/guides/howto/img/dtg_crypto.svg b/doc/guides/howto/img/dtg_crypto.svg new file mode 100644 index 000000000..969f8b5d5 --- /dev/null +++ b/doc/guides/howto/img/dtg_crypto.svg @@ -0,0 +1,21 @@ + + + + + + + + crypto + + + + Layer 1 + + Core 7 + + CRYPTO PMD + + Device + + + diff --git a/doc/guides/howto/img/dtg_distributor_worker.svg b/doc/guides/howto/img/dtg_distributor_worker.svg new file mode 100644 index 000000000..d2638ded8 --- /dev/null +++ b/doc/guides/howto/img/dtg_distributor_worker.svg @@ -0,0 +1,36 @@ + + + + + + + + distributor and worker + + + + Layer 1 + + PKT classify + Distribute + + + + + + worker 1 + worker 2 + worker 3 + worker 4 + core 1 + core 2,3,4,5 + + diff --git a/doc/guides/howto/img/dtg_mempool.svg b/doc/guides/howto/img/dtg_mempool.svg new file mode 100644 index 000000000..2f53a3ca8 --- /dev/null +++ b/doc/guides/howto/img/dtg_mempool.svg @@ -0,0 +1,27 @@ + + + + + + + + mempool + + + + Layer 1 + + + MBUF pool + + + + + + Payload + + Metadata + + struct mbuf + + diff --git a/doc/guides/howto/img/dtg_pdump.svg b/doc/guides/howto/img/dtg_pdump.svg new file mode 100644 index 000000000..4b14fb7ce --- /dev/null +++ b/doc/guides/howto/img/dtg_pdump.svg @@ -0,0 +1,33 @@ + + + + + + + + pdump + + + + Layer 1 + + + + + + RX + TX + Q1 + Q2 + Q4 + Q3 + Primary + + Secondary + + + Ring BufferQ + + Core 0 + + diff --git a/doc/guides/howto/img/dtg_producer_ring.svg b/doc/guides/howto/img/dtg_producer_ring.svg new file mode 100644 index 000000000..e300234cd --- /dev/null +++ b/doc/guides/howto/img/dtg_producer_ring.svg @@ -0,0 +1,24 @@ + + + + + + + + producer ring + + + + Layer 1 + + + + Stage 1 + Stage 2 + Stage 3 + + + + + + diff --git a/doc/guides/howto/img/dtg_qos_tx.svg b/doc/guides/howto/img/dtg_qos_tx.svg new file mode 100644 index 000000000..9f1d3b80d --- /dev/null +++ b/doc/guides/howto/img/dtg_qos_tx.svg @@ -0,0 +1,29 @@ + + + + + + + + qos + + + + + + + Layer 1 + + + + + TX + Core1 + NIC1 + NIC2 + NIC3 + + QoS + core 10 + + diff --git a/doc/guides/howto/img/dtg_rx_rate.svg b/doc/guides/howto/img/dtg_rx_rate.svg new file mode 100644 index 000000000..02f8760c5 --- /dev/null +++ b/doc/guides/howto/img/dtg_rx_rate.svg @@ -0,0 +1,25 @@ + + + + + + + + rx rate + + + + + + + Layer 1 + + + + RX + Core0 + NIC1 + NIC2 + NIC3 + + diff --git a/doc/guides/howto/img/dtg_rx_tx_drop.svg b/doc/guides/howto/img/dtg_rx_tx_drop.svg new file mode 100644 index 000000000..ca1484862 --- /dev/null +++ b/doc/guides/howto/img/dtg_rx_tx_drop.svg @@ -0,0 +1,33 @@ + + + + + + + + rx-tx drops + + + + + + + Layer 1 + + + + RX + Core0 + NIC1 + NIC2 + NIC3 + + + + TX + Core1 + NIC1 + NIC2 + NIC3 + + diff --git a/doc/guides/howto/img/dtg_sample_app_model.svg b/doc/guides/howto/img/dtg_sample_app_model.svg new file mode 100644 index 000000000..b876aa3b6 --- /dev/null +++ b/doc/guides/howto/img/dtg_sample_app_model.svg @@ -0,0 +1,110 @@ + + + + + + + + sample application model + + + + Layer 1 + + + + + Health Check + core 7 + Stats Collector + + + RX + NIC 1 + NIC 2 + core0 + + + TX + core1 + NIC 1 + NIC 2 + + QoS + + Crypto + + + + Worker 1 + Worker 2 + Worker 3 + + + + Worker 1 + Worker 2 + Worker 3 + + Device + core 2,3,4 + core 5 + core 6 + core 2,3,4 + + PKT classify + Distribute + + + + + + + + + diff --git a/doc/guides/howto/img/dtg_service.svg b/doc/guides/howto/img/dtg_service.svg new file mode 100644 index 000000000..fa72de823 --- /dev/null +++ b/doc/guides/howto/img/dtg_service.svg @@ -0,0 +1,20 @@ + + + + + + + + service + + + + Layer 1 + + + + Health Check + core 6 + Stats Collector + + -- 2.17.1