[bootlin/training-materials updates] master: debugging: slides: debugging-common-tools: Fix some typos (ac46bb3e)

Herve Codina herve.codina at bootlin.com
Tue Nov 15 17:36:03 CET 2022


Repository : https://github.com/bootlin/training-materials
On branch  : master
Link       : https://github.com/bootlin/training-materials/commit/ac46bb3eb421d29e43a0d50108f32e261d922591

>---------------------------------------------------------------

commit ac46bb3eb421d29e43a0d50108f32e261d922591
Author: Herve Codina <herve.codina at bootlin.com>
Date:   Tue Nov 15 17:31:02 2022 +0100

    debugging: slides: debugging-common-tools: Fix some typos
    
    Signed-off-by: Herve Codina <herve.codina at bootlin.com>


>---------------------------------------------------------------

ac46bb3eb421d29e43a0d50108f32e261d922591
 .../debugging-common-tools/debugging-common-tools.tex  | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/slides/debugging-common-tools/debugging-common-tools.tex b/slides/debugging-common-tools/debugging-common-tools.tex
index a754de97..849e84e7 100644
--- a/slides/debugging-common-tools/debugging-common-tools.tex
+++ b/slides/debugging-common-tools/debugging-common-tools.tex
@@ -46,7 +46,7 @@
             \kdochtml{admin-guide/sysctl}
       \item \code{/proc/irq/<irq>} interrupt information.
     \end{itemize}
-    \item A list of all available {\em procfs} file and their content i
+    \item A list of all available {\em procfs} file and their content is
           described at \kdochtml{filesystems/proc}
   \end{itemize}
 \end{frame}
@@ -79,7 +79,7 @@
     \item Usually mounted on \code{/sys/kernel/debug}
     \begin{itemize}
       \item Dynamic debug features exposes through \code{/sys/kernel/debug/dynamic_debug}.
-      \item Clock tree exposed through \code{/sys/kernel/debug/cl/clk_summary}.
+      \item Clock tree exposed through \code{/sys/kernel/debug/clk/clk_summary}.
     \end{itemize}
   \end{itemize}
 \end{frame}
@@ -130,7 +130,7 @@ blk-sysfs.c:516
 \begin{frame}[fragile]
   \frametitle{binutils example (2/2)}
   \begin{itemize}
-    \item Display elf header with {\em readelf}:
+    \item Display an elf header with {\em readelf}:
     \begin{block}{}
       \begin{minted}[fontsize=\footnotesize]{console}
 $ readelf -h binary
@@ -147,7 +147,7 @@ Machine:                           Advanced Micro Devices X86-64
       \end{minted}
     \end{block}
 
-    \item Convert an elf to a flat binary file using {\em objcopy}:
+    \item Convert an elf file to a flat binary file using {\em objcopy}:
     \begin{block}{}
       \begin{minted}[fontsize=\footnotesize]{console}
 $ objcopy -O binary file.elf file.bin
@@ -300,7 +300,7 @@ Swap:           14Gi        20Mi        14Gi
 \begin{frame}[fragile]
   \frametitle{vmstat}
   \begin{itemize}
-    \item {\em vmstat} display information about system virtual memory usage
+    \item {\em vmstat} displays information about system virtual memory usage
     \item Can also display stats from processes, memory, paging, block IO,
           traps, disks and cpu activity (\manpage{vmstat}{8}).
     \item Can be used to gather data at periodic interval using {\em vmstat <interval> <number>}
@@ -321,7 +321,7 @@ r  b   swpd   free   buff  cache     si   so    bi    bo    in   cs  us sy id wa
 \begin{frame}[fragile]
   \frametitle{mpstat}
   \begin{itemize}
-    \item {\em mpstat} display Multiprocessor statistics (\manpage{mpstat}{1}).
+    \item {\em mpstat} displays Multiprocessor statistics (\manpage{mpstat}{1}).
     \item Useful to detect unbalance CPU workloads, bad IRQ affinity, etc.
   \end{itemize}
   \begin{block}{}
@@ -344,7 +344,7 @@ Linux 6.0.0-1-amd64 (fixe)      19/10/2022      _x86_64_        (4 CPU)
 \begin{frame}[fragile]
   \frametitle{iostat}
   \begin{itemize}
-    \item {\em iostat} display information about IOs per device on the system.
+    \item {\em iostat} displays information about IOs per device on the system.
     \item Useful to see if a device is overloaded by IOs. 
   \end{itemize}
   \begin{block}{}
@@ -369,7 +369,7 @@ sdb      104,42     274,55    2126,64       0,00  1280853  9921488        0
 \begin{frame}[fragile]
   \frametitle{iotop}
   \begin{itemize}
-    \item {\em iotop} display information about IOs much like {\em top} for each
+    \item {\em iotop} displays information about IOs much like {\em top} for each
           process.
     \item Useful to find which application are generating too much IO accesses.
     \begin{itemize}
@@ -399,7 +399,7 @@ Current DISK READ:      20.61 K/s | Current DISK WRITE:      24.04 K/s
 \begin{frame}[fragile]
   \frametitle{pmap}
   \begin{itemize}
-    \item \code{pmap} tool allows to display process mappings more easily that
+    \item \code{pmap} tool allows to display process mappings more easily than
           accessing \code{/proc/<pid>/maps} (\manpage{pmap}{1}).
   \end{itemize}
   \begin{block}{}




More information about the training-materials-updates mailing list