Browse Source

gma500: Fix shmem mapping

GMA500 did it the old way and it's been on the TODO list to fix.
Current kernels now blow up if we use the old way so we'd better
do the work!

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Alan Cox 13 years ago
parent
commit
e912b6d27c
1 changed files with 2 additions and 3 deletions
  1. 2 3
      drivers/gpu/drm/gma500/gtt.c

+ 2 - 3
drivers/gpu/drm/gma500/gtt.c

@@ -20,6 +20,7 @@
  */
  */
 
 
 #include <drm/drmP.h>
 #include <drm/drmP.h>
+#include <linux/shmem_fs.h>
 #include "psb_drv.h"
 #include "psb_drv.h"
 
 
 
 
@@ -203,9 +204,7 @@ static int psb_gtt_attach_pages(struct gtt_range *gt)
 	gt->npage = pages;
 	gt->npage = pages;
 
 
 	for (i = 0; i < pages; i++) {
 	for (i = 0; i < pages; i++) {
-		/* FIXME: needs updating as per mail from Hugh Dickins */
-		p = read_cache_page_gfp(mapping, i,
-					__GFP_COLD | GFP_KERNEL);
+		p = shmem_read_mapping_page(mapping, i);
 		if (IS_ERR(p))
 		if (IS_ERR(p))
 			goto err;
 			goto err;
 		gt->pages[i] = p;
 		gt->pages[i] = p;