I think you may not have meant to do this part of the patch in nv.c:
+/*
if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))
+*/
+ if (remap_page_range(vma, start, page, PAGE_SIZE, PAGE_SHARED))
return -EAGAIN;
How about this instead:
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)
if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))
return -EAGAIN;
+#else
+ if (remap_page_range(vma, start, page, PAGE_SIZE, PAGE_SHARED))
+ return -EAGAIN;
+#endif
-- *********************************************************** Nicholas Petreley http://www.VarLinux.org nicholas@petreley.com http://www.computerworld.com http://www.petreley.org http://www.linuxworld.com Eph 6:12 *********************************************************** - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Sat Feb 23 2002 - 21:00:27 EST