]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
kernel/module: improve documentation for try_module_get()
authorMarco Pagani <marpagan@redhat.com>
Thu, 21 Dec 2023 16:58:47 +0000 (17:58 +0100)
committerLuis Chamberlain <mcgrof@kernel.org>
Thu, 21 Dec 2023 18:26:14 +0000 (10:26 -0800)
The sentence "this call will fail if the module is already being
removed" is potentially confusing and may contradict the rest of the
documentation. If one tries to get a module that has already been
removed using a stale pointer, the kernel will crash.

Signed-off-by: Marco Pagani <marpagan@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
include/linux/module.h

index a98e188cf37b8182b8654b3be069f93ce1d97174..08364d5cbc07978094eab554e5515ac38982982f 100644 (file)
@@ -668,7 +668,7 @@ extern void __module_get(struct module *module);
  * @module: the module we should check for
  *
  * Only try to get a module reference count if the module is not being removed.
- * This call will fail if the module is already being removed.
+ * This call will fail if the module is in the process of being removed.
  *
  * Care must also be taken to ensure the module exists and is alive prior to
  * usage of this call. This can be gauranteed through two means: