diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-01-10 18:00:18 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-01-10 18:00:18 -0800 |
commit | 4cd083d53108b32f4c8ed92a3f85d7b36133c0c9 (patch) | |
tree | e3e08d3d9f94c83ae72f57f0b147ebd037f952fa /include | |
parent | a05aea98d4052dcd63d9d379613058e9e86c76d7 (diff) | |
parent | 4515d08a742c76612b65d2f47a87d12860519842 (diff) |
Merge tag 'modules-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull module updates from Luis Chamberlain:
"Just one cleanup and one documentation improvement change. No
functional changes"
* tag 'modules-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
kernel/module: improve documentation for try_module_get()
module: Remove redundant TASK_UNINTERRUPTIBLE
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 9cd0009bd050..96bc462872c0 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -670,7 +670,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: |