WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] anomaly in irq check in fixup_page_fault()

To: "Xen-devel@xxxxxxxxxxxxxxxxxxx" <Xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] anomaly in irq check in fixup_page_fault()
From: Mukesh Rathor <mukesh.rathor@xxxxxxxxxx>
Date: Wed, 20 Jul 2011 18:30:02 -0700 (PDT)
Cc:
Delivery-date: Wed, 20 Jul 2011 18:31:34 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Organization: Oracle Corporation
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi,

This is a bit confusing. This for PVOPs kernel, I've not looked at older
PV kernels to see what they do yet. But, the VCPU starts with 
evtchn_upcall_mask set and eflags.IF enabled. However, during kernel
boot memory mapping lot of faults are getting fixed up by xen in: 

fixup_page_fault():
    /* No fixups in interrupt context or when interrupts are disabled. */
    if ( in_irq() || !(regs->eflags & X86_EFLAGS_IF) )  <------
        return 0;

The guest is running under the assumption of INTs disabled during 
init_memory_mapping, and the first enable happens much later. So this
check seems redundant at least for PVOPs kernel.

Now for my hybrid, the guest during initial boot is running with IF 
disabled, so fixup doesn't like that. Not sure if permanently disabling
the (eflags & X86_EFLAGS_IF) check for hybrid would be a good idea for
me.

thanks,
Mukesh


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>