diff options
Diffstat (limited to 'arch/x86/xen/p2m.c')
| -rw-r--r-- | arch/x86/xen/p2m.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index 5e6e236977c7..58db86f7b384 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c @@ -197,7 +197,7 @@ static void * __ref alloc_p2m_page(void)  static void __ref free_p2m_page(void *p)  {  	if (unlikely(!slab_is_available())) { -		memblock_free((unsigned long)p, PAGE_SIZE); +		memblock_free(p, PAGE_SIZE);  		return;  	} |