-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 212720 b: refs/heads/master c: fb74fb6 h: refs/heads/master v: v3
- Loading branch information
Yinghai Lu
authored and
H. Peter Anvin
committed
Aug 27, 2010
1 parent
f09aee9
commit 0dbf14a
Showing
4 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7950c407c0288b223a200c1bba8198941599ca37 | ||
refs/heads/master: fb74fb6db91abc3c1ceeb9d2c17b44866a12c63e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef _X86_MEMBLOCK_H | ||
#define _X86_MEMBLOCK_H | ||
|
||
#define ARCH_DISCARD_MEMBLOCK | ||
|
||
u64 memblock_x86_find_in_range_size(u64 start, u64 *sizep, u64 align); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
#include <linux/kernel.h> | ||
#include <linux/types.h> | ||
#include <linux/init.h> | ||
#include <linux/bitops.h> | ||
#include <linux/memblock.h> | ||
#include <linux/bootmem.h> | ||
#include <linux/mm.h> | ||
#include <linux/range.h> | ||
|
||
/* Check for already reserved areas */ | ||
static inline bool __init bad_addr_size(u64 *addrp, u64 *sizep, u64 align) | ||
{ | ||
struct memblock_region *r; | ||
u64 addr = *addrp, last; | ||
u64 size = *sizep; | ||
bool changed = false; | ||
|
||
again: | ||
last = addr + size; | ||
for_each_memblock(reserved, r) { | ||
if (last > r->base && addr < r->base) { | ||
size = r->base - addr; | ||
changed = true; | ||
goto again; | ||
} | ||
if (last > (r->base + r->size) && addr < (r->base + r->size)) { | ||
addr = round_up(r->base + r->size, align); | ||
size = last - addr; | ||
changed = true; | ||
goto again; | ||
} | ||
if (last <= (r->base + r->size) && addr >= r->base) { | ||
(*sizep)++; | ||
return false; | ||
} | ||
} | ||
if (changed) { | ||
*addrp = addr; | ||
*sizep = size; | ||
} | ||
return changed; | ||
} | ||
|
||
static u64 __init __memblock_x86_find_in_range_size(u64 ei_start, u64 ei_last, u64 start, | ||
u64 *sizep, u64 align) | ||
{ | ||
u64 addr, last; | ||
|
||
addr = round_up(ei_start, align); | ||
if (addr < start) | ||
addr = round_up(start, align); | ||
if (addr >= ei_last) | ||
goto out; | ||
*sizep = ei_last - addr; | ||
while (bad_addr_size(&addr, sizep, align) && addr + *sizep <= ei_last) | ||
; | ||
last = addr + *sizep; | ||
if (last > ei_last) | ||
goto out; | ||
|
||
return addr; | ||
|
||
out: | ||
return MEMBLOCK_ERROR; | ||
} | ||
|
||
/* | ||
* Find next free range after start, and size is returned in *sizep | ||
*/ | ||
u64 __init memblock_x86_find_in_range_size(u64 start, u64 *sizep, u64 align) | ||
{ | ||
struct memblock_region *r; | ||
|
||
for_each_memblock(memory, r) { | ||
u64 ei_start = r->base; | ||
u64 ei_last = ei_start + r->size; | ||
u64 addr; | ||
|
||
addr = __memblock_x86_find_in_range_size(ei_start, ei_last, start, | ||
sizep, align); | ||
|
||
if (addr != MEMBLOCK_ERROR) | ||
return addr; | ||
} | ||
|
||
return MEMBLOCK_ERROR; | ||
} |