From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755437AbaEEIzo (ORCPT ); Mon, 5 May 2014 04:55:44 -0400 Received: from mail-ee0-f54.google.com ([74.125.83.54]:49209 "EHLO mail-ee0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752419AbaEEIzm (ORCPT ); Mon, 5 May 2014 04:55:42 -0400 Date: Mon, 5 May 2014 10:55:37 +0200 From: Ingo Molnar To: Josh Poimboeuf Cc: Seth Jennings , Masami Hiramatsu , Steven Rostedt , Frederic Weisbecker , Ingo Molnar , Jiri Slaby , linux-kernel@vger.kernel.org, Peter Zijlstra , Andrew Morton , Linus Torvalds , Thomas Gleixner Subject: Re: [RFC PATCH 0/2] kpatch: dynamic kernel patching Message-ID: <20140505085537.GA32196@gmail.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Josh Poimboeuf wrote: > [...] > > kpatch checks the backtraces of all tasks in stop_machine() to > ensure that no instances of the old function are running when the > new function is applied. I think the biggest downside of this > approach is that stop_machine() has to idle all other CPUs during > the patching process, so it inserts a small amount of latency (a few > ms on an idle system). When live patching the kernel, how about achieving an even 'cleaner' state for all tasks in the system: to freeze all tasks, as the suspend and hibernation code (and kexec) does, via freeze_processes()? That means no tasks in the system have any real kernel execution state, and there's also no problem with long-sleeping tasks, as freeze_processes() is supposed to be fast as well. I.e. go for the most conservative live patching state first, and relax it only once the initial model is upstream and is working robustly. Thanks, Ingo