On Wed, 15 Nov 2000, Akos Szabo wrote:

> In the xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/memory.c
> the mem_map_reserve function calling is the "old" style,

Your patch introduces a new bug...

This chunk:

+#if LINUX_VERSION_CODE >= 0x020400
+                                /* Argument type changed in 2.4.0-test6/pre8 */
+                       mem_map_reserve(virt_to_page(addr));
+#else
                        mem_map_unreserve(MAP_NR(addr));
+#endif

should be

+#if LINUX_VERSION_CODE >= 0x020400
+                                /* Argument type changed in 2.4.0-test6/pre8 */
+                       mem_map_unreserve(virt_to_page(addr));
+#else
                        mem_map_unreserve(MAP_NR(addr));
+#endif


LLaP
bero




_______________________________________________
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list

Reply via email to