All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition
@ 2015-07-14  3:15 Minfei Huang
  2015-07-14  3:51 ` Josh Poimboeuf
  2015-07-14 20:49 ` Jiri Kosina
  0 siblings, 2 replies; 3+ messages in thread
From: Minfei Huang @ 2015-07-14  3:15 UTC (permalink / raw)
  To: jpoimboe, sjenning, jkosina, vojtech
  Cc: live-patching, linux-kernel, Minfei Huang

From: Minfei Huang <mnfhuang@gmail.com>

It is more better that klp_disable_func returnes immediately, if
func->state and func->old_addr do not satisfy the condition.

We should robust the livepatch code, although the above situation never
happen in current code path.

Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
---
 kernel/livepatch/core.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
index c40ebcc..6e53441 100644
--- a/kernel/livepatch/core.c
+++ b/kernel/livepatch/core.c
@@ -348,8 +348,10 @@ static void klp_disable_func(struct klp_func *func)
 {
 	struct klp_ops *ops;
 
-	WARN_ON(func->state != KLP_ENABLED);
-	WARN_ON(!func->old_addr);
+	if (WARN_ON(func->state != KLP_ENABLED))
+		return;
+	if (WARN_ON(!func->old_addr))
+		return;
 
 	ops = klp_find_ops(func->old_addr);
 	if (WARN_ON(!ops))
-- 
2.2.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition
  2015-07-14  3:15 [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition Minfei Huang
@ 2015-07-14  3:51 ` Josh Poimboeuf
  2015-07-14 20:49 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Josh Poimboeuf @ 2015-07-14  3:51 UTC (permalink / raw)
  To: Minfei Huang
  Cc: sjenning, jkosina, vojtech, live-patching, linux-kernel, Minfei Huang

On Tue, Jul 14, 2015 at 11:15:37AM +0800, Minfei Huang wrote:
> From: Minfei Huang <mnfhuang@gmail.com>
> 
> It is more better that klp_disable_func returnes immediately, if
> func->state and func->old_addr do not satisfy the condition.
> 
> We should robust the livepatch code, although the above situation never
> happen in current code path.
> 
> Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
> ---
>  kernel/livepatch/core.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
> index c40ebcc..6e53441 100644
> --- a/kernel/livepatch/core.c
> +++ b/kernel/livepatch/core.c
> @@ -348,8 +348,10 @@ static void klp_disable_func(struct klp_func *func)
>  {
>  	struct klp_ops *ops;
>  
> -	WARN_ON(func->state != KLP_ENABLED);
> -	WARN_ON(!func->old_addr);
> +	if (WARN_ON(func->state != KLP_ENABLED))
> +		return;
> +	if (WARN_ON(!func->old_addr))
> +		return;
>  
>  	ops = klp_find_ops(func->old_addr);
>  	if (WARN_ON(!ops))

Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition
  2015-07-14  3:15 [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition Minfei Huang
  2015-07-14  3:51 ` Josh Poimboeuf
@ 2015-07-14 20:49 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2015-07-14 20:49 UTC (permalink / raw)
  To: Minfei Huang
  Cc: jpoimboe, sjenning, vojtech, live-patching, linux-kernel, Minfei Huang

On Tue, 14 Jul 2015, Minfei Huang wrote:

> From: Minfei Huang <mnfhuang@gmail.com>
> 
> It is more better that klp_disable_func returnes immediately, if
> func->state and func->old_addr do not satisfy the condition.
> 
> We should robust the livepatch code, although the above situation never
> happen in current code path.

I have reworded the changelog a little bit and applied to 
for-4.3/upstream.

Thanks,

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-14 20:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-14  3:15 [PATCH] livepatch: klp_disable_func returnes once it does not satisfy the condition Minfei Huang
2015-07-14  3:51 ` Josh Poimboeuf
2015-07-14 20:49 ` Jiri Kosina

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.