Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933307AbaLKAaQ (ORCPT ); Wed, 10 Dec 2014 19:30:16 -0500 Received: from terminus.zytor.com ([198.137.202.10]:49788 "EHLO mail.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932623AbaLKAaP (ORCPT ); Wed, 10 Dec 2014 19:30:15 -0500 Message-ID: <5488E552.8050207@zytor.com> Date: Wed, 10 Dec 2014 16:29:06 -0800 From: "H. Peter Anvin" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: "Luis R. Rodriguez" , mingo@redhat.com, peterz@infradead.org CC: tglx@linutronix.de, konrad.wilk@oracle.com, david.vrabel@citrix.com, masami.hiramatsu.pt@hitachi.com, rostedt@goodmis.org, luto@amacapital.net, JBeulich@suse.com, jgross@suse.com, bpoirier@suse.de, x86@kernel.org, xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org, "Luis R. Rodriguez" , Borislav Petkov Subject: Re: [PATCH v2 2/2] x86/xen: allow privcmd hypercalls to be preempted References: <1418254487-9988-1-git-send-email-mcgrof@do-not-panic.com> <1418254487-9988-3-git-send-email-mcgrof@do-not-panic.com> In-Reply-To: <1418254487-9988-3-git-send-email-mcgrof@do-not-panic.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/10/2014 03:34 PM, Luis R. Rodriguez wrote: > diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S > index 344b63f..40b5c0c 100644 > --- a/arch/x86/kernel/entry_32.S > +++ b/arch/x86/kernel/entry_32.S > @@ -982,7 +982,28 @@ ENTRY(xen_hypervisor_callback) > ENTRY(xen_do_upcall) > 1: mov %esp, %eax > call xen_evtchn_do_upcall > +#ifdef CONFIG_PREEMPT > jmp ret_from_intr > +#else > + GET_THREAD_INFO(%ebp) > +#ifdef CONFIG_VM86 > + movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS > + movb PT_CS(%esp), %al > + andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax > +#else > + movl PT_CS(%esp), %eax > + andl $SEGMENT_RPL_MASK, %eax > +#endif > + cmpl $USER_RPL, %eax > + jae resume_userspace # returning to v8086 or userspace > + DISABLE_INTERRUPTS(CLBR_ANY) > + cmpb $0,PER_CPU_VAR(xen_in_preemptible_hcall) > + jz resume_kernel > + movb $0,PER_CPU_VAR(xen_in_preemptible_hcall) > + call cond_resched_irq > + movb $1,PER_CPU_VAR(xen_in_preemptible_hcall) > + jmp resume_kernel > +#endif /* CONFIG_PREEMPT */ > CFI_ENDPROC > ENDPROC(xen_hypervisor_callback) > > diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S > index c0226ab..0ccdd06 100644 > --- a/arch/x86/kernel/entry_64.S > +++ b/arch/x86/kernel/entry_64.S > @@ -1170,7 +1170,23 @@ ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs) > popq %rsp > CFI_DEF_CFA_REGISTER rsp > decl PER_CPU_VAR(irq_count) > +#ifdef CONFIG_PREEMPT > jmp error_exit > +#else > + movl %ebx, %eax > + RESTORE_REST > + DISABLE_INTERRUPTS(CLBR_NONE) > + TRACE_IRQS_OFF > + GET_THREAD_INFO(%rcx) > + testl %eax, %eax > + je error_exit_user > + cmpb $0,PER_CPU_VAR(xen_in_preemptible_hcall) > + jz retint_kernel > + movb $0,PER_CPU_VAR(xen_in_preemptible_hcall) > + call cond_resched_irq > + movb $1,PER_CPU_VAR(xen_in_preemptible_hcall) > + jmp retint_kernel > +#endif /* CONFIG_PREEMPT */ > CFI_ENDPROC > END(xen_do_hypervisor_callback) > > @@ -1398,6 +1414,7 @@ ENTRY(error_exit) > GET_THREAD_INFO(%rcx) > testl %eax,%eax > jne retint_kernel > +error_exit_user: > LOCKDEP_SYS_EXIT_IRQ > movl TI_flags(%rcx),%edx > movl $_TIF_WORK_MASK,%edi You're adding a bunch of code for the *non*-preemptive case here... why? -hpa -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/