Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 145819
b: refs/heads/master
c: 7571a60
h: refs/heads/master
i:
  145817: a97a39f
  145815: 1ebc8b6
v: v3
  • Loading branch information
Jeremy Fitzhardinge committed Mar 30, 2009
1 parent f6827fc commit b6afe33
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 59d7187142bbe9b404a403ed0f874d3227305f26
refs/heads/master: 7571a60446030d2576d881438447e86a0755a83b
7 changes: 6 additions & 1 deletion trunk/arch/x86/xen/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static inline unsigned p2m_index(unsigned long pfn)
}

/* Build the parallel p2m_top_mfn structures */
void xen_setup_mfn_list_list(void)
static void __init xen_build_mfn_list_list(void)
{
unsigned pfn, idx;

Expand All @@ -198,7 +198,10 @@ void xen_setup_mfn_list_list(void)
unsigned topidx = idx * P2M_ENTRIES_PER_PAGE;
p2m_top_mfn_list[idx] = virt_to_mfn(&p2m_top_mfn[topidx]);
}
}

void xen_setup_mfn_list_list(void)
{
BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);

HYPERVISOR_shared_info->arch.pfn_to_mfn_frame_list_list =
Expand All @@ -218,6 +221,8 @@ void __init xen_build_dynamic_phys_to_machine(void)

p2m_top[topidx] = &mfn_list[pfn];
}

xen_build_mfn_list_list();
}

unsigned long get_phys_to_machine(unsigned long pfn)
Expand Down

0 comments on commit b6afe33

Please sign in to comment.