diff options
| author | Minfei Huang <mnfhuang@gmail.com> | 2015-07-13 23:15:37 -0400 |
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.com> | 2015-07-14 16:48:06 -0400 |
| commit | 225f58fbcc02ace232fc49f05036042f9d58263e (patch) | |
| tree | 30cda152f2024ccf23c67859296fe3541325e4c7 /kernel/livepatch | |
| parent | 0faef837e431b4984652f4a14d2075bed108a04d (diff) | |
livepatch: Improve error handling in klp_disable_func()
In case of func->state or func->old_addr not having expected values,
we'd rather bail out immediately from klp_disable_func().
This can't really happen with the current codebase, but fix this
anyway in the sake of robustness.
[jkosina@suse.com: reworded the changelog a bit]
Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to 'kernel/livepatch')
| -rw-r--r-- | kernel/livepatch/core.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index c40ebcca0495..6e5344112419 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c | |||
| @@ -348,8 +348,10 @@ static void klp_disable_func(struct klp_func *func) | |||
| 348 | { | 348 | { |
| 349 | struct klp_ops *ops; | 349 | struct klp_ops *ops; |
| 350 | 350 | ||
| 351 | WARN_ON(func->state != KLP_ENABLED); | 351 | if (WARN_ON(func->state != KLP_ENABLED)) |
| 352 | WARN_ON(!func->old_addr); | 352 | return; |
| 353 | if (WARN_ON(!func->old_addr)) | ||
| 354 | return; | ||
| 353 | 355 | ||
| 354 | ops = klp_find_ops(func->old_addr); | 356 | ops = klp_find_ops(func->old_addr); |
| 355 | if (WARN_ON(!ops)) | 357 | if (WARN_ON(!ops)) |
