[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <53765475.6040707@hitachi.com>
Date: Sat, 17 May 2014 03:09:57 +0900
From: Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>
To: Jiri Kosina <jkosina@...e.cz>
Cc: Steven Rostedt <rostedt@...dmis.org>,
Ingo Molnar <mingo@...nel.org>,
Frederic Weisbecker <fweisbec@...il.com>,
Josh Poimboeuf <jpoimboe@...hat.com>,
Seth Jennings <sjenning@...hat.com>,
Ingo Molnar <mingo@...hat.com>, Jiri Slaby <jslaby@...e.cz>,
linux-kernel@...r.kernel.org,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Andrew Morton <akpm@...ux-foundation.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Thomas Gleixner <tglx@...utronix.de>
Subject: Re: Re: [RFC PATCH 0/2] kpatch: dynamic kernel patching
(2014/05/17 1:27), Jiri Kosina wrote:
> On Tue, 6 May 2014, Steven Rostedt wrote:
>
>>> However, I also think if users can accept such freezing wait-time,
>>> it means they can also accept kexec based "checkpoint-restart" patching.
>>> So, I think the final goal of the kpatch will be live patching without
>>> stopping the machine. I'm discussing the issue on github #138, but that is
>>> off-topic. :)
>>
>> I agree with Ingo too. Being conservative at first is the right
>> approach here. We should start out with a stop_machine making sure that
>> everything is sane before we continue. Sure, that's not much different
>> than a kexec, but lets take things one step at a time.
>>
>> ftrace did the stop_machine (and still does for some archs), and slowly
>> moved to a more efficient method. kpatch/kgraft should follow suit.
>
> I don't really agree here.
>
> I actually believe that "lazy" switching kgraft is doing provides a little
> bit more in the sense of consistency than stop_machine()-based aproach.
>
> Consider this scenario:
>
> void foo()
> {
> for (i=0; i<10000; i++) {
> bar(i);
> something_else(i);
> }
> }
In this case, I'd recommend you to add foo() to replacing target
as dummy. Then, kpatch can ensure foo() is actually not running. :)
> Let's say you want to live-patch bar(). With stop_machine()-based aproach,
> you can easily end-up with old bar() and new bar() being called in two
> consecutive iterations before the loop is even exited, right? (especially
> on preemptible kernel, or if something_else() goes to sleep).
>
> With lazy-switching implemented in kgraft, this can never happen.
And I guess similar thing may happen with kgraft. If old function and
new function share a non-auto variable and they modify it different way,
the result will be unexpected by the mutual interference.
Thank you,
>
> So I'd like to ask for a little bit more explanation why you think the
> stop_machine()-based patching provides more sanity/consistency assurance
> than the lazy switching we're doing.
>
> Thanks a lot,
>
--
Masami HIRAMATSU
Software Platform Research Dept. Linux Technology Research Center
Hitachi, Ltd., Yokohama Research Laboratory
E-mail: masami.hiramatsu.pt@...achi.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists