[bootlin/training-materials updates] master: debugging: slides: remove space before exclamation mark (cc96b93c)

Luca Ceresoli luca.ceresoli at bootlin.com
Thu Feb 23 15:57:07 CET 2023


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

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

commit cc96b93cd1145cbe86447f8d8774e63502a90b9c
Author: Luca Ceresoli <luca.ceresoli at bootlin.com>
Date:   Thu Feb 23 15:50:13 2023 +0100

    debugging: slides: remove space before exclamation mark
    
    Signed-off-by: Luca Ceresoli <luca.ceresoli at bootlin.com>


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

cc96b93cd1145cbe86447f8d8774e63502a90b9c
 .../debugging-application-profiling.tex                             | 2 +-
 slides/debugging-going-further/debugging-going-further.tex          | 2 +-
 slides/debugging-kernel-debugging/debugging-kernel-debugging.tex    | 4 ++--
 .../debugging-system-wide-profiling.tex                             | 6 +++---
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/slides/debugging-application-profiling/debugging-application-profiling.tex b/slides/debugging-application-profiling/debugging-application-profiling.tex
index 823770ca..c91a5267 100644
--- a/slides/debugging-application-profiling/debugging-application-profiling.tex
+++ b/slides/debugging-application-profiling/debugging-application-profiling.tex
@@ -15,7 +15,7 @@
       \item Profiling memory usage allows to optimize memory consumption.
     \end{itemize}
     \item After profiling, the data set must be analyzed to identify potential
-          improvements (and not the reverse !).
+          improvements (and not the reverse!).
   \end{itemize}
 \end{frame}
 
diff --git a/slides/debugging-going-further/debugging-going-further.tex b/slides/debugging-going-further/debugging-going-further.tex
index 83e2dc1c..7facece0 100644
--- a/slides/debugging-going-further/debugging-going-further.tex
+++ b/slides/debugging-going-further/debugging-going-further.tex
@@ -41,7 +41,7 @@
   \begin{columns}
     \column{0.65\textwidth}
     \begin{itemize}
-    \item Still from Brendan Gregg !
+    \item Still from Brendan Gregg!
     \item Covers more than 150 tools that uses BPF.
     \item Explains how to analyze the results from these tools to optimize
       your system.
diff --git a/slides/debugging-kernel-debugging/debugging-kernel-debugging.tex b/slides/debugging-kernel-debugging/debugging-kernel-debugging.tex
index 54a04eff..5258fc0f 100644
--- a/slides/debugging-kernel-debugging/debugging-kernel-debugging.tex
+++ b/slides/debugging-kernel-debugging/debugging-kernel-debugging.tex
@@ -246,7 +246,7 @@
       \item \code{kexec --type zImage -p my_zImage --dtb=my_dtb.dtb
         --initrd=my_initrd --append="command line option"}
     \end{itemize}
-    \item Then simply wait for a crash to happen !
+    \item Then simply wait for a crash to happen!
   \end{itemize}
 \end{frame}
 
@@ -524,7 +524,7 @@ Use <ctrl>C to terminate program
   \frametitle{{\em crash}}
   \begin{itemize}
     \item {\em crash} is a CLI tool allowing to investigate kernel (dead or
-      alive !)
+      alive!)
     \begin{itemize}
       \item Uses /dev/mem or /proc/kcore on live systems
       \item Requires \kconfigval{CONFIG_STRICT_DEVMEM}{n}
diff --git a/slides/debugging-system-wide-profiling/debugging-system-wide-profiling.tex b/slides/debugging-system-wide-profiling/debugging-system-wide-profiling.tex
index 5c7aff74..99dc44b7 100644
--- a/slides/debugging-system-wide-profiling/debugging-system-wide-profiling.tex
+++ b/slides/debugging-system-wide-profiling/debugging-system-wide-profiling.tex
@@ -424,7 +424,7 @@ Overhead  Shared Object                         Symbol
       \item \code{branch}: Trace likely()/unlikely() prediction errors.
       \item \code{mmiotrace}: Trace all accesses to the hardware (\code{read[bwlq]/write[bwlq]}).
     \end{itemize}
-    \item \textbf{Warning: Some tracers can be expensive !}
+    \item \textbf{Warning: Some tracers can be expensive!}
   \end{itemize}
   \begin{block}{}
     \begin{minted}[fontsize=\small]{console}
@@ -546,7 +546,7 @@ stress-n-114       0d.s.  290us : <stack trace>
 void read_hw()
 {
   if (condition)
-    trace_printk("Condition is true !");
+    trace_printk("Condition is true!");
 }
     \end{minted}
   \end{block}
@@ -556,7 +556,7 @@ void read_hw()
   \begin{block}{}
     \begin{minted}[fontsize=\tiny]{console}
 1)               |             read_hw() {
-1)               |                /* Condition is true ! */
+1)               |                /* Condition is true! */
 1)   2.657 us    |             }
     \end{minted}
   \end{block}




More information about the training-materials-updates mailing list