summaryrefslogtreecommitdiffstats
path: root/Documentation/livepatch
diff options
context:
space:
mode:
authorBagas Sanjaya <bagasdotme@gmail.com>2024-09-03 04:47:53 +0200
committerPetr Mladek <pmladek@suse.com>2024-09-04 13:42:27 +0200
commit3360211b2a955a30458de1f2657f0c9f75ef839c (patch)
treed918ab2379c892eb6227fc350d22ae5cf88f5dc1 /Documentation/livepatch
parentMerge tag 'livepatching-for-6.11' of git://git.kernel.org/pub/scm/linux/kerne... (diff)
downloadlinux-3360211b2a955a30458de1f2657f0c9f75ef839c.tar.xz
linux-3360211b2a955a30458de1f2657f0c9f75ef839c.zip
Documentation: livepatch: Correct release locks antonym
"get" doesn't properly fit as an antonym for "release" in the context of locking. Correct it with "acquire". Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> Reviewed-by: Petr Mladek <pmladek@suse.com> Link: https://lore.kernel.org/r/20240903024753.104609-1-bagasdotme@gmail.com Signed-off-by: Petr Mladek <pmladek@suse.com>
Diffstat (limited to 'Documentation/livepatch')
-rw-r--r--Documentation/livepatch/livepatch.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/livepatch/livepatch.rst b/Documentation/livepatch/livepatch.rst
index 68e3651e8af9..acb90164929e 100644
--- a/Documentation/livepatch/livepatch.rst
+++ b/Documentation/livepatch/livepatch.rst
@@ -50,7 +50,7 @@ some limitations, see below.
3. Consistency model
====================
-Functions are there for a reason. They take some input parameters, get or
+Functions are there for a reason. They take some input parameters, acquire or
release locks, read, process, and even write some data in a defined way,
have return values. In other words, each function has a defined semantic.