aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/xen/p2m.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c
index 1b267e75158d..7ed8cc3434c5 100644
--- a/arch/x86/xen/p2m.c
+++ b/arch/x86/xen/p2m.c
@@ -809,21 +809,17 @@ struct page *m2p_find_override(unsigned long mfn)
809{ 809{
810 unsigned long flags; 810 unsigned long flags;
811 struct list_head *bucket = &m2p_overrides[mfn_hash(mfn)]; 811 struct list_head *bucket = &m2p_overrides[mfn_hash(mfn)];
812 struct page *p, *ret; 812 struct page *p, *t, *ret;
813 813
814 ret = NULL; 814 ret = NULL;
815 815
816 spin_lock_irqsave(&m2p_override_lock, flags); 816 list_for_each_entry_safe(p, t, bucket, lru) {
817
818 list_for_each_entry(p, bucket, lru) {
819 if (page_private(p) == mfn) { 817 if (page_private(p) == mfn) {
820 ret = p; 818 ret = p;
821 break; 819 break;
822 } 820 }
823 } 821 }
824 822
825 spin_unlock_irqrestore(&m2p_override_lock, flags);
826
827 return ret; 823 return ret;
828} 824}
829 825