public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ioremap: fix iounmap numpages
@ 2007-06-29 17:09 Dave Young
  2007-06-29 12:36 ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Young @ 2007-06-29 17:09 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Jeremy Fitzhardinge, Chuck Ebbert, linux-kernel

Hi,
The second parameter of change_page_attr in iounmap is wrong, it should be (p->size - 1) >> PAGE_SHIFT

Signed-off-by: Dave Young <hidave.darkstar@gmail.com> 
---

diff -upr linux/arch/i386/mm/ioremap.c linux.new/arch/i386/mm/ioremap.c
--- linux/arch/i386/mm/ioremap.c	2007-06-29 16:48:40.000000000 +0000
+++ linux.new/arch/i386/mm/ioremap.c	2007-06-29 16:50:09.000000000 +0000
@@ -196,7 +196,7 @@ void iounmap(volatile void __iomem *addr
 	/* Reset the direct mapping. Can block */
 	if ((p->flags >> 20) && p->phys_addr < virt_to_phys(high_memory) - 1) {
 		change_page_attr(virt_to_page(__va(p->phys_addr)),
-				 p->size >> PAGE_SHIFT,
+				 (p->size - 1) >> PAGE_SHIFT,
 				 PAGE_KERNEL);
 		global_flush_tlb();
 	} 

Regards
dave

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-07-02 19:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-29 17:09 [PATCH] ioremap: fix iounmap numpages Dave Young
2007-06-29 12:36 ` Jeremy Fitzhardinge
2007-07-02  0:33   ` Dave Young
2007-07-02  4:01     ` Dmitry Monakhov
2007-07-02 19:08     ` Jeremy Fitzhardinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox