[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] Fix boot crash on xsm/flask enabled builds when no policy module is present
On 26/08/2013 18:00, Tomasz Wroblewski wrote: > > > The shaky manually constructed call graph for the assertion failure: > > setup.c: init_idle_domain > schedule.c: scheduler_init > domain.c: domain_create > domain.c: alloc_domain_struct > domain.c: alloc_xenheap_pages > .. > page_alloc.c: alloc_heap_pages > flushtlb.h: flush_tlb_mask > flushtlb.h: flush_mask > smp.c: flush_area_mask - hits ASSERT because interrupts are disabled here > > I apparently can't get a real stacktrace because adding > dump_execution_state in flush_area_mask just causes the "Unknown > interrupt" error, similarily to what hitting the ASSERT fail does. I > printed the assert condition manually to verify it tho and interrupts > are disabled there so its bound to fail. > Just for reference here, as I went digging in the code. dump_execution_state() makes use of run_in_exception_handler() which makes use of the ud2 instruction to get its hands on an exception frame, for the purpose of dumping the state. The "Unknown Interrupt" means that the CPU is still running on the early boot IDT, set up in xen/arch/x86/boot/x86_64.S which does a blanket ignore on all interrupts, including exceptions. We should probably see about setting up and using the arch traps earlier in boot. Failing that, an early_invalid_opcode() handler could at least hint that it might have hit an early bug, and give some details. ~Andrew _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |