aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/pageattr.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-10-10 13:30:08 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-10 13:30:08 -0400
commit3dd392a407d15250a501fa109cc1f93fee95ef85 (patch)
treec1faca3fa8bd0f7c8790b3e0887229b4a5a90e8b /arch/x86/mm/pageattr.c
parentb27a43c1e90582facad44de67d02bc9e9f900289 (diff)
parentd403a6484f0341bf0624d17ece46f24f741b6a92 (diff)
Merge branch 'linus' into x86/pat2
Conflicts: arch/x86/mm/init_64.c
Diffstat (limited to 'arch/x86/mm/pageattr.c')
-rw-r--r--arch/x86/mm/pageattr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index b6374d653d06..a9ec89c3fbca 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -96,7 +96,7 @@ static inline unsigned long highmap_start_pfn(void)
96 96
97static inline unsigned long highmap_end_pfn(void) 97static inline unsigned long highmap_end_pfn(void)
98{ 98{
99 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT; 99 return __pa(roundup((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
100} 100}
101 101
102#endif 102#endif
@@ -981,11 +981,13 @@ int set_memory_ro(unsigned long addr, int numpages)
981{ 981{
982 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0); 982 return change_page_attr_clear(&addr, numpages, __pgprot(_PAGE_RW), 0);
983} 983}
984EXPORT_SYMBOL_GPL(set_memory_ro);
984 985
985int set_memory_rw(unsigned long addr, int numpages) 986int set_memory_rw(unsigned long addr, int numpages)
986{ 987{
987 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0); 988 return change_page_attr_set(&addr, numpages, __pgprot(_PAGE_RW), 0);
988} 989}
990EXPORT_SYMBOL_GPL(set_memory_rw);
989 991
990int set_memory_np(unsigned long addr, int numpages) 992int set_memory_np(unsigned long addr, int numpages)
991{ 993{