On Sun, Jan 07, 2007 at 03:18:45AM +1100, Rusty Russell wrote:
> PS.  drm_memory.h has a "drm_follow_page": this forces us to uninline
> various page tables ops.  Can this use follow_page() somehow, or do we
> need an "__follow_page" export for this case?

Not if avoidable.  And it seems avoidable as drm really should be using
vmalloc_to_page.  Untested patch below:


Index: linux-2.6/drivers/char/drm/drm_memory.c
===================================================================
--- linux-2.6.orig/drivers/char/drm/drm_memory.c        2007-01-06 
20:21:07.000000000 +0100
+++ linux-2.6/drivers/char/drm/drm_memory.c     2007-01-06 20:29:03.000000000 
+0100
@@ -211,6 +211,23 @@
 }
 #endif  /*  0  */
 
+static int is_agp_mapping(void *pt, unsigned long size, drm_device_t *dev)
+{
+       unsigned long addr = (unsigned long)pt;
+
+       if (addr >= VMALLOC_START && addr < VMALLOC_END) {
+               unsigned long phys;
+               drm_map_t *map;
+
+               phys = page_to_phys(vmalloc_to_page(pt)) + offset_in_page(pt);
+               map = drm_lookup_map(phys, size, dev);
+               if (map && map->type == _DRM_AGP)
+                       return 1;
+       }
+
+       return 0;
+}
+
 void drm_ioremapfree(void *pt, unsigned long size,
                                   drm_device_t * dev)
 {
@@ -219,21 +236,11 @@
         * routines for handling mappings in the AGP space.  Hopefully this can 
be done in
         * a future revision of the interface...
         */
-       if (drm_core_has_AGP(dev) && dev->agp && dev->agp->cant_use_aperture
-           && ((unsigned long)pt >= VMALLOC_START
-               && (unsigned long)pt < VMALLOC_END)) {
-               unsigned long offset;
-               drm_map_t *map;
-
-               offset = drm_follow_page(pt) | ((unsigned long)pt & ~PAGE_MASK);
-               map = drm_lookup_map(offset, size, dev);
-               if (map && map->type == _DRM_AGP) {
-                       vunmap(pt);
-                       return;
-               }
-       }
-
-       iounmap(pt);
+       if (drm_core_has_AGP(dev) && dev->agp && dev->agp->cant_use_aperture &&
+           is_agp_mapping(pt, size, dev))
+               vunmap(pt);
+       else
+               iounmap(pt);
 }
 EXPORT_SYMBOL(drm_ioremapfree);
 
Index: linux-2.6/drivers/char/drm/drm_memory.h
===================================================================
--- linux-2.6.orig/drivers/char/drm/drm_memory.h        2007-01-06 
20:21:07.000000000 +0100
+++ linux-2.6/drivers/char/drm/drm_memory.h     2007-01-06 20:26:50.000000000 
+0100
@@ -55,23 +55,6 @@
 #  define PAGE_AGP     PAGE_KERNEL
 # endif
 #endif
-
-static inline unsigned long drm_follow_page(void *vaddr)
-{
-       pgd_t *pgd = pgd_offset_k((unsigned long)vaddr);
-       pud_t *pud = pud_offset(pgd, (unsigned long)vaddr);
-       pmd_t *pmd = pmd_offset(pud, (unsigned long)vaddr);
-       pte_t *ptep = pte_offset_kernel(pmd, (unsigned long)vaddr);
-       return pte_pfn(*ptep) << PAGE_SHIFT;
-}
-
-#else                          /* __OS_HAS_AGP */
-
-static inline unsigned long drm_follow_page(void *vaddr)
-{
-       return 0;
-}
-
 #endif
 
 void *drm_ioremap(unsigned long offset, unsigned long size,
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to