-
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.
Merge branch 'x86-xen-for-linus' of git://git.kernel.org/pub/scm/linu…
…x/kernel/git/tip/linux-2.6-tip * 'x86-xen-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: x86: split __phys_addr out into separate file xen: use stronger barrier after unlocking lock xen: only enable interrupts while actually blocking for spinlock xen: make -fstack-protector work under Xen
- Loading branch information
Showing
9 changed files
with
222 additions
and
101 deletions.
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
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,70 @@ | ||
#include <linux/mmdebug.h> | ||
#include <linux/module.h> | ||
#include <linux/mm.h> | ||
|
||
#include <asm/page.h> | ||
|
||
#include "physaddr.h" | ||
|
||
#ifdef CONFIG_X86_64 | ||
|
||
unsigned long __phys_addr(unsigned long x) | ||
{ | ||
if (x >= __START_KERNEL_map) { | ||
x -= __START_KERNEL_map; | ||
VIRTUAL_BUG_ON(x >= KERNEL_IMAGE_SIZE); | ||
x += phys_base; | ||
} else { | ||
VIRTUAL_BUG_ON(x < PAGE_OFFSET); | ||
x -= PAGE_OFFSET; | ||
VIRTUAL_BUG_ON(!phys_addr_valid(x)); | ||
} | ||
return x; | ||
} | ||
EXPORT_SYMBOL(__phys_addr); | ||
|
||
bool __virt_addr_valid(unsigned long x) | ||
{ | ||
if (x >= __START_KERNEL_map) { | ||
x -= __START_KERNEL_map; | ||
if (x >= KERNEL_IMAGE_SIZE) | ||
return false; | ||
x += phys_base; | ||
} else { | ||
if (x < PAGE_OFFSET) | ||
return false; | ||
x -= PAGE_OFFSET; | ||
if (!phys_addr_valid(x)) | ||
return false; | ||
} | ||
|
||
return pfn_valid(x >> PAGE_SHIFT); | ||
} | ||
EXPORT_SYMBOL(__virt_addr_valid); | ||
|
||
#else | ||
|
||
#ifdef CONFIG_DEBUG_VIRTUAL | ||
unsigned long __phys_addr(unsigned long x) | ||
{ | ||
/* VMALLOC_* aren't constants */ | ||
VIRTUAL_BUG_ON(x < PAGE_OFFSET); | ||
VIRTUAL_BUG_ON(__vmalloc_start_set && is_vmalloc_addr((void *) x)); | ||
return x - PAGE_OFFSET; | ||
} | ||
EXPORT_SYMBOL(__phys_addr); | ||
#endif | ||
|
||
bool __virt_addr_valid(unsigned long x) | ||
{ | ||
if (x < PAGE_OFFSET) | ||
return false; | ||
if (__vmalloc_start_set && is_vmalloc_addr((void *) x)) | ||
return false; | ||
if (x >= FIXADDR_START) | ||
return false; | ||
return pfn_valid((x - PAGE_OFFSET) >> PAGE_SHIFT); | ||
} | ||
EXPORT_SYMBOL(__virt_addr_valid); | ||
|
||
#endif /* CONFIG_X86_64 */ |
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,10 @@ | ||
#include <asm/processor.h> | ||
|
||
static inline int phys_addr_valid(resource_size_t addr) | ||
{ | ||
#ifdef CONFIG_PHYS_ADDR_T_64BIT | ||
return !(addr >> boot_cpu_data.x86_phys_bits); | ||
#else | ||
return 1; | ||
#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
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
Oops, something went wrong.