aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/livepatch.h
diff options
context:
space:
mode:
authorPetr Mladek <pmladek@suse.com>2019-01-09 07:43:22 -0500
committerJiri Kosina <jkosina@suse.cz>2019-01-11 14:51:24 -0500
commit68007289bf3cd937a5b8fc4987d2787167bd06ca (patch)
tree2c913929da4c5e65fcacdfc5afb47399d86cf446 /include/linux/livepatch.h
parent0430f78bf38f9972f0cf0522709cc63d49fa164c (diff)
livepatch: Don't block the removal of patches loaded after a forced transition
module_put() is currently never called in klp_complete_transition() when klp_force is set. As a result, we might keep the reference count even when klp_enable_patch() fails and klp_cancel_transition() is called. This might give the impression that a module might get blocked in some strange init state. Fortunately, it is not the case. The reference count is ignored when mod->init fails and erroneous modules are always removed. Anyway, this might be confusing. Instead, this patch moves the global klp_forced flag into struct klp_patch. As a result, we block only modules that might still be in use after a forced transition. Newly loaded livepatches might be eventually completely removed later. It is not a big deal. But the code is at least consistent with the reality. Signed-off-by: Petr Mladek <pmladek@suse.com> Acked-by: Joe Lawrence <joe.lawrence@redhat.com> Acked-by: Miroslav Benes <mbenes@suse.cz> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/livepatch.h')
-rw-r--r--include/linux/livepatch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h
index 6978785bc059..6a9165d9b090 100644
--- a/include/linux/livepatch.h
+++ b/include/linux/livepatch.h
@@ -143,6 +143,7 @@ struct klp_object {
143 * @kobj: kobject for sysfs resources 143 * @kobj: kobject for sysfs resources
144 * @kobj_added: @kobj has been added and needs freeing 144 * @kobj_added: @kobj has been added and needs freeing
145 * @enabled: the patch is enabled (but operation may be incomplete) 145 * @enabled: the patch is enabled (but operation may be incomplete)
146 * @forced: was involved in a forced transition
146 * @finish: for waiting till it is safe to remove the patch module 147 * @finish: for waiting till it is safe to remove the patch module
147 */ 148 */
148struct klp_patch { 149struct klp_patch {
@@ -155,6 +156,7 @@ struct klp_patch {
155 struct kobject kobj; 156 struct kobject kobj;
156 bool kobj_added; 157 bool kobj_added;
157 bool enabled; 158 bool enabled;
159 bool forced;
158 struct completion finish; 160 struct completion finish;
159}; 161};
160 162