Commit 65ae2979 authored by Linus Torvalds's avatar Linus Torvalds

Merge http://linux-ntfs.bkbits.net/linux-2.5-mm

into home.transmeta.com:/home/torvalds/v2.5/linux
parents d735821a ecf0c915
...@@ -874,7 +874,6 @@ static inline void remap_pte_range(pte_t * pte, unsigned long address, unsigned ...@@ -874,7 +874,6 @@ static inline void remap_pte_range(pte_t * pte, unsigned long address, unsigned
end = PMD_SIZE; end = PMD_SIZE;
pfn = phys_addr >> PAGE_SHIFT; pfn = phys_addr >> PAGE_SHIFT;
do { do {
struct page *page;
pte_t oldpage = ptep_get_and_clear(pte); pte_t oldpage = ptep_get_and_clear(pte);
if (!pfn_valid(pfn) || PageReserved(pfn_to_page(pfn))) if (!pfn_valid(pfn) || PageReserved(pfn_to_page(pfn)))
...@@ -1043,7 +1042,7 @@ static int do_wp_page(struct mm_struct *mm, struct vm_area_struct * vma, ...@@ -1043,7 +1042,7 @@ static int do_wp_page(struct mm_struct *mm, struct vm_area_struct * vma,
bad_wp_page: bad_wp_page:
pte_unmap(page_table); pte_unmap(page_table);
spin_unlock(&mm->page_table_lock); spin_unlock(&mm->page_table_lock);
printk("do_wp_page: bogus page at address %08lx (page 0x%lx)\n",address,(unsigned long)old_page); printk(KERN_ERR "do_wp_page: bogus page at address %08lx\n", address);
return -1; return -1;
no_mem: no_mem:
page_cache_release(old_page); page_cache_release(old_page);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment