|
@@ -397,8 +397,8 @@ static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
|
|
|
return;
|
|
|
}
|
|
|
if (nr_unshown) {
|
|
|
- printk(KERN_EMERG
|
|
|
- "Bad page map: %lu messages suppressed\n",
|
|
|
+ printk(KERN_ALERT
|
|
|
+ "BUG: Bad page map: %lu messages suppressed\n",
|
|
|
nr_unshown);
|
|
|
nr_unshown = 0;
|
|
|
}
|
|
@@ -410,26 +410,27 @@ static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
|
|
|
mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
|
|
|
index = linear_page_index(vma, addr);
|
|
|
|
|
|
- printk(KERN_EMERG "Bad page map in process %s pte:%08llx pmd:%08llx\n",
|
|
|
+ printk(KERN_ALERT
|
|
|
+ "BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n",
|
|
|
current->comm,
|
|
|
(long long)pte_val(pte), (long long)pmd_val(*pmd));
|
|
|
if (page) {
|
|
|
- printk(KERN_EMERG
|
|
|
+ printk(KERN_ALERT
|
|
|
"page:%p flags:%p count:%d mapcount:%d mapping:%p index:%lx\n",
|
|
|
page, (void *)page->flags, page_count(page),
|
|
|
page_mapcount(page), page->mapping, page->index);
|
|
|
}
|
|
|
- printk(KERN_EMERG
|
|
|
+ printk(KERN_ALERT
|
|
|
"addr:%p vm_flags:%08lx anon_vma:%p mapping:%p index:%lx\n",
|
|
|
(void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
|
|
|
/*
|
|
|
* Choose text because data symbols depend on CONFIG_KALLSYMS_ALL=y
|
|
|
*/
|
|
|
if (vma->vm_ops)
|
|
|
- print_symbol(KERN_EMERG "vma->vm_ops->fault: %s\n",
|
|
|
+ print_symbol(KERN_ALERT "vma->vm_ops->fault: %s\n",
|
|
|
(unsigned long)vma->vm_ops->fault);
|
|
|
if (vma->vm_file && vma->vm_file->f_op)
|
|
|
- print_symbol(KERN_EMERG "vma->vm_file->f_op->mmap: %s\n",
|
|
|
+ print_symbol(KERN_ALERT "vma->vm_file->f_op->mmap: %s\n",
|
|
|
(unsigned long)vma->vm_file->f_op->mmap);
|
|
|
dump_stack();
|
|
|
add_taint(TAINT_BAD_PAGE);
|