On Wed, Jun 22, 2016 at 11:40 AM, Josh Poimboeuf <jpoimboe@xxxxxxxxxx> wrote: > On Wed, Jun 22, 2016 at 11:26:21AM -0700, Andy Lutomirski wrote: >> > >> > So are you suggesting something like: >> > >> > .macro ENTRY_CALL func pt_regs_offset=0 >> > call \func >> > 1: .pushsection .entry_calls, "a" >> > .long 1b - . >> > .long \pt_regs_offset >> > .popsection >> > .endm >> > >> > and then change every call in the entry code to ENTRY_CALL? >> >> Yes, exactly, modulo whether the section name is good. hpa is >> probably the authority on that. > > Well, as you probably know, I don't really like peppering ENTRY_CALL > everywhere. :-/ Me neither. But at least it's less constraining on the already-fairly-hairy code. > > Also I wonder how we could annotate the hypercalls, for example > DISABLE_INTERRUPTS actually wraps the call in a push/pop pair. Oh, yuck. But forcing all the DISABLE_INTERRUPTS and ENABLE_INTERRUPTS invocations to be in frame pointer regions isn't so great either. DWARF solves this problem completely and IMO fairly cleanly. Maybe we should add your task flag and then consider removing it again when DWARF happens. -- To unsubscribe from this list: send the line "unsubscribe live-patching" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html