diff options
Diffstat (limited to 'arch/x86/mm/ioremap.c')
| -rw-r--r-- | arch/x86/mm/ioremap.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 78fe3f1ac49..9a1e6583910 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -282,12 +282,7 @@ void iounmap(volatile void __iomem *addr)  	   in parallel. Reuse of the virtual address is prevented by  	   leaving it in the global lists until we're done with it.  	   cpa takes care of the direct mappings. */ -	read_lock(&vmlist_lock); -	for (p = vmlist; p; p = p->next) { -		if (p->addr == (void __force *)addr) -			break; -	} -	read_unlock(&vmlist_lock); +	p = find_vm_area((void __force *)addr);  	if (!p) {  		printk(KERN_ERR "iounmap: bad address %p\n", addr);  |