Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53829
b: refs/heads/master
c: b92e9fa
h: refs/heads/master
i:
  53827: 33a66c6
v: v3
  • Loading branch information
Jan Beulich authored and Andi Kleen committed May 2, 2007
1 parent 5435926 commit c72f261
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b00742d399513a4100c24cc2accefdc1bb1e0b15
refs/heads/master: b92e9fac400d4ae5bc7a75c568e9844ec53ea329
20 changes: 20 additions & 0 deletions trunk/arch/i386/kernel/e820.c
Original file line number Diff line number Diff line change
Expand Up @@ -825,6 +825,26 @@ void __init limit_regions(unsigned long long size)
print_memory_map("limit_regions endfunc");
}

/*
* This function checks if any part of the range <start,end> is mapped
* with type.
*/
int
e820_any_mapped(u64 start, u64 end, unsigned type)
{
int i;
for (i = 0; i < e820.nr_map; i++) {
const struct e820entry *ei = &e820.map[i];
if (type && ei->type != type)
continue;
if (ei->addr >= end || ei->addr + ei->size <= start)
continue;
return 1;
}
return 0;
}
EXPORT_SYMBOL_GPL(e820_any_mapped);

/*
* This function checks if the entire range <start,end> is mapped with type.
*
Expand Down
5 changes: 3 additions & 2 deletions trunk/arch/x86_64/kernel/e820.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <asm/bootsetup.h>
#include <asm/sections.h>

struct e820map e820 __initdata;
struct e820map e820;

/*
* PFN of last memory page.
Expand Down Expand Up @@ -98,7 +98,7 @@ static inline int bad_addr(unsigned long *addrp, unsigned long size)
* This function checks if any part of the range <start,end> is mapped
* with type.
*/
int __meminit
int
e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
{
int i;
Expand All @@ -112,6 +112,7 @@ e820_any_mapped(unsigned long start, unsigned long end, unsigned type)
}
return 0;
}
EXPORT_SYMBOL_GPL(e820_any_mapped);

/*
* This function checks if the entire range <start,end> is mapped with type.
Expand Down
13 changes: 4 additions & 9 deletions trunk/drivers/char/agp/amd64-agp.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/agp_backend.h>
#include <linux/mmzone.h>
#include <asm/page.h> /* PAGE_SIZE */
#include <asm/e820.h>
#include <asm/k8.h>
#include "agp.h"

Expand Down Expand Up @@ -259,7 +260,6 @@ static const struct agp_bridge_driver amd_8151_driver = {
/* Some basic sanity checks for the aperture. */
static int __devinit aperture_valid(u64 aper, u32 size)
{
u32 pfn, c;
if (aper == 0) {
printk(KERN_ERR PFX "No aperture\n");
return 0;
Expand All @@ -272,14 +272,9 @@ static int __devinit aperture_valid(u64 aper, u32 size)
printk(KERN_ERR PFX "Aperture out of bounds\n");
return 0;
}
pfn = aper >> PAGE_SHIFT;
for (c = 0; c < size/PAGE_SIZE; c++) {
if (!pfn_valid(pfn + c))
break;
if (!PageReserved(pfn_to_page(pfn + c))) {
printk(KERN_ERR PFX "Aperture pointing to RAM\n");
return 0;
}
if (e820_any_mapped(aper, aper + size, E820_RAM)) {
printk(KERN_ERR PFX "Aperture pointing to RAM\n");
return 0;
}

/* Request the Aperture. This catches cases when someone else
Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-i386/e820.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ extern struct e820map e820;

extern int e820_all_mapped(unsigned long start, unsigned long end,
unsigned type);
extern int e820_any_mapped(u64 start, u64 end, unsigned type);
extern void find_max_pfn(void);
extern void register_bootmem_low_pages(unsigned long max_low_pfn);
extern void e820_register_memory(void);
Expand Down

0 comments on commit c72f261

Please sign in to comment.