Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759449AbcCDTW0 (ORCPT ); Fri, 4 Mar 2016 14:22:26 -0500 Received: from verein.lst.de ([213.95.11.211]:56961 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751431AbcCDTWZ (ORCPT ); Fri, 4 Mar 2016 14:22:25 -0500 Date: Fri, 4 Mar 2016 20:22:22 +0100 From: Torsten Duwe To: Petr Mladek Cc: jeyu@redhat.com, jkosina@suse.cz, linux-kernel@vger.kernel.org, rostedt@goodmis.org, kamalesh@linux.vnet.ibm.com, linuxppc-dev@ozlabs.org, live-patching@vger.kernel.org, mbenes@suse.cz Subject: Re: [PATCH][v4] livepatch/ppc: Enable livepatching on powerpc Message-ID: <20160304192222.GA31341@lst.de> References: <1457023921-2051-1-git-send-email-pmladek@suse.com> <20160304124247.GA20914@lst.de> <20160304130137.GC3166@pathway.suse.cz> <20160304181657.GA30434@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160304181657.GA30434@lst.de> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1259 Lines: 32 On Fri, Mar 04, 2016 at 07:16:57PM +0100, Torsten Duwe wrote: > On Fri, Mar 04, 2016 at 02:01:37PM +0100, Petr Mladek wrote: > > > > Do I understand it correctly that we could not patch functions that > > pass arguments on the stack with this implementation? If yes, how hard > > would be to get it working, please? At least, it would be great to > > catch this problem and handle it with grace. Otherwise, it might > > be hard to debug. > > No, those functions only require special attention. So far it's correct. It's been a while since I wrote that code. > I needed _any_ location to store the caller's TOC; > and the stack is thread-safe and recursion-safe. > The current caller's frame is already full so I had > to create a new one. Correction: the TOC can be stored in the caller's stack frame at the usual location. Only the restore instruction is a problem. > A patch function could e.g. grab that TOC value in a > prologue and then pop that stack frame. Or it could > add those 32 bytes to the assumed arguments' stack offsets. So one solution could be to call the patch function via a small trampoline or pre-prologue that just pops that frame, and have the patch function restore R2 manually at the end. Sorry for the confusion, Torsten