search for: bt_iounmap

Displaying 2 results from an estimated 2 matches for "bt_iounmap".

Did you mean: __iounmap
2007 Feb 14
2
[PATCH 8/8] 2.6.17: scan DMI early
...ioremap-xen.c 2007-02-08 17:09:47.000000000 +0100 @@ -374,8 +374,6 @@ void iounmap(volatile void __iomem *addr } EXPORT_SYMBOL(iounmap); -#ifdef __i386__ - void __init *bt_ioremap(unsigned long phys_addr, unsigned long size) { unsigned long offset, last_addr; @@ -443,5 +441,3 @@ void __init bt_iounmap(void *addr, unsig --nrpages; } } - -#endif /* __i386__ */ Index: head-2007-02-08/arch/x86_64/kernel/setup-xen.c =================================================================== --- head-2007-02-08.orig/arch/x86_64/kernel/setup-xen.c 2007-02-08 17:07:13.000000000 +0100 +++ head-2007-02-08/a...
2008 Oct 09
0
[PATCH] Dom0: Fix bad pte at booting time
Backport upstream kernel patch to fix Dom0''s bad pte bug. - In Dom0 kernel, at boot time, system will call bt_ioremap() to do mappings for the Boot Time Fix Memory region. Also system will call bt_iounmap() to unmap the memory region by setting phys=0. In this case, system will encounter pte_ERROR(). This patch backports the upstream kernel patch by Ingo Molnar <mingo@elte.hu>, with commit: 70c9f590ffc3f959cc81c1a3cecb6b8133caf35d Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Best...