Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 202367
b: refs/heads/master
c: bbeb340
h: refs/heads/master
i:
  202365: 2894a0e
  202363: 3a66414
  202359: a43e1e4
  202351: 6d58b3a
  202335: b3703c6
  202303: 8dc147c
  202239: 87e0a68
v: v3
  • Loading branch information
Huang Ying authored and Avi Kivity committed Aug 1, 2010
1 parent df3128d commit bb55bde
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6c3f6041172b78d5532c6bf3680d304e92ec2e66
refs/heads/master: bbeb34062fbad287c949a945a516a0c15b179993
3 changes: 3 additions & 0 deletions trunk/mm/memory-failure.c
Original file line number Diff line number Diff line change
Expand Up @@ -1298,6 +1298,9 @@ int soft_offline_page(struct page *page, int flags)
return ret;
}

/*
* The caller must hold current->mm->mmap_sem in read mode.
*/
int is_hwpoison_address(unsigned long addr)
{
pgd_t *pgdp;
Expand Down
3 changes: 2 additions & 1 deletion trunk/virt/kvm/kvm_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,12 +947,13 @@ static pfn_t hva_to_pfn(struct kvm *kvm, unsigned long addr)
if (unlikely(npages != 1)) {
struct vm_area_struct *vma;

down_read(&current->mm->mmap_sem);
if (is_hwpoison_address(addr)) {
up_read(&current->mm->mmap_sem);
get_page(hwpoison_page);
return page_to_pfn(hwpoison_page);
}

down_read(&current->mm->mmap_sem);
vma = find_vma(current->mm, addr);

if (vma == NULL || addr < vma->vm_start ||
Expand Down

0 comments on commit bb55bde

Please sign in to comment.