linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix mmap() of /dev/hpet
@ 2005-09-22 11:56 Keir Fraser
  2005-09-22 13:59 ` Bob Picco
  0 siblings, 1 reply; 2+ messages in thread
From: Keir Fraser @ 2005-09-22 11:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: Keir.Fraser, akpm, rddunlap, cosmos

[-- Attachment #1: Type: text/plain, Size: 498 bytes --]

The address passed to io_remap_pfn_range() in hpet_mmap() does not
need to be converted using __pa(): it is already a physical
address. This bug was found and the patch suggested by Clay Harris. 

I introduced this particular bug when making io_remap_pfn_range
changes a few months ago. In fact mmap()ing /dev/hpet has *never*
previously worked: before my changes __pa() was being executed on an
ioremap()ed virtual address, which is also invalid.

Signed-off-by: Keir Fraser <keir@xensource.com>


[-- Attachment #2: hpet.patch --]
[-- Type: text/plain, Size: 530 bytes --]

diff -urpP linux-2.6.14-rc2.old/drivers/char/hpet.c linux-2.6.14-rc2.new/drivers/char/hpet.c
--- linux-2.6.14-rc2.old/drivers/char/hpet.c	2005-09-22 12:47:00.773424663 +0100
+++ linux-2.6.14-rc2.new/drivers/char/hpet.c	2005-09-22 12:47:18.216928551 +0100
@@ -273,7 +273,6 @@ static int hpet_mmap(struct file *file, 
 
 	vma->vm_flags |= VM_IO;
 	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
-	addr = __pa(addr);
 
 	if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT,
 					PAGE_SIZE, vma->vm_page_prot)) {

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

end of thread, other threads:[~2005-09-22 13:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-22 11:56 [PATCH] Fix mmap() of /dev/hpet Keir Fraser
2005-09-22 13:59 ` Bob Picco

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).