Re: Handle kernel page faults using task gate

From: Ingo Molnar
Date: Thu Jun 30 2005 - 02:12:43 EST



* eliad lubovsky <eliadl@xxxxxxx> wrote:

> How do I clear the 'busy' bit?
> I set my TSS descriptor with
> __set_tss_desc(cpu, GDT_ENTRY_PAGE_FAULT_TSS, &pagefault_tss);

i suspect you have to clear the busy bit in the pagefault handler
itself. The CPU marks it as busy upon fault. I guess it would be OK to
just do the above __set_tss_desc() for _every_ pagefault, that too will
clear the busy bit, but you are probably better off just clearing that
bit manually:

cpu_gdt_table[cpu][GDT_ENTRY_TSS].b &= 0xfffffdff;

Ingo
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/