From 44dd0a99ff0af5cec3a43adcb929d521cecd42be Mon Sep 17 00:00:00 2001 From: Vincenzo Petrolo Date: Mon, 11 Jan 2021 11:05:44 +0100 Subject: [PATCH] documentation/smp: Fix typo Signed-off-by: Vincenzo Petrolo --- Documentation/teaching/lectures/smp.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/teaching/lectures/smp.rst b/Documentation/teaching/lectures/smp.rst index 8e16ac48a87c53..29706286c2208e 100644 --- a/Documentation/teaching/lectures/smp.rst +++ b/Documentation/teaching/lectures/smp.rst @@ -853,7 +853,7 @@ the two: * They have a higher latency than spin locks Conceptually, the :c:func:`mutex_lock` operation is relatively simple: -if the mutex is not acquired we an take the fast path via an atomic +if the mutex is not acquired we can take the fast path via an atomic exchange operation: @@ -923,7 +923,7 @@ mutex debugging for locking dependency engine debug feature. The :c:func:`mutex_unlock` operation is symmetric: if there are no -waiters on the mutex then we an take the fast path via an atomic exchange +waiters on the mutex then we can take the fast path via an atomic exchange operation: .. slide:: :c:func:`mutex_unlock` fast path