Re: [PATCH 3/5] x86: early_ioremap_reset fix 2

2008-01-31 Thread Ingo Molnar
* Huang, Ying <[EMAIL PROTECTED]> wrote: > - if (!*pte & _PAGE_PRESENT) { > + if (*pte & _PAGE_PRESENT) { btw., the usual form for that is pte_present(*pte). (i've fixed this up in the patch) Ingo -- To unsubscribe from this list: send the line "unsubscribe linu

Re: [PATCH 3/5] x86: early_ioremap_reset fix 2

2008-01-31 Thread Ingo Molnar
* Huang, Ying <[EMAIL PROTECTED]> wrote: > This patch fixes a bug of early_ioremap_reset(), which had been fixed > before by "convert the boot time page table to the kernels native > format" patch. But that patch has been reverted now. thanks, applied. (The native-pagetables patch is in x86.gi

[PATCH 3/5] x86: early_ioremap_reset fix 2

2008-01-30 Thread Huang, Ying
This patch fixes a bug of early_ioremap_reset(), which had been fixed before by "convert the boot time page table to the kernels native format" patch. But that patch has been reverted now. Signed-off-by: Huang Ying <[EMAIL PROTECTED]> --- arch/x86/mm/ioremap.c |2 +- 1 file changed, 1 insert