diff options
author | Pavel Machek <pavel@suse.cz> | 2008-05-26 21:17:30 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-06-05 13:59:13 +0200 |
commit | 4f384f8bcdb5d618a0a68fb84c809e602c798b8f (patch) | |
tree | 87185300a666a1fbb59dcc3cfa6850f1d2a99452 /include/asm-sparc64/uaccess.h | |
parent | fa5b8a30cf03520737e9a0ee2ee03a61b2eccf05 (diff) |
x86: aperture_64.c: corner case wrong
If
fix == 0, aper_enabled == 1, gart_fix_e820 == 0
if (!fix && !aper_enabled)
return;
if (gart_fix_e820 && !fix && aper_enabled) {
if (e820_any_mapped(aper_base, aper_base + aper_size,
E820_RAM)) {
/* reserve it, so we can reuse it in second kernel */
printk(KERN_INFO "update e820 for GART\n");
add_memory_region(aper_base, aper_size, E820_RESERVED);
update_e820();
}
return;
}
/* different nodes have different setting, disable them all atfirst*/
we'll fall back here and disable all the settings, even when they were
all consistent.
What about this? (I hope it compiles...)
Signed-off-by: Pavel Machek <pavel@suse.cz>
Cc: Dave Jones <davej@codemonkey.org.uk>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-sparc64/uaccess.h')
0 files changed, 0 insertions, 0 deletions