Created attachment 18888 [details] [review] Correct number of args to drm_bo_wait() call A Gentoo user reported a build error with a drm git snapshot from July, against a 2.6.20 kernel. Line 220 in linux-core/drm_compat.c is as follows (inside the function drm_bo_vm_fault() ): err = drm_bo_wait(bo, 0, 1, 0); drm_bo_wait() actually accepts five arguments, with the fifth being (int)check_unfenced. There's actually an identical call in drm_bo_vm_nopfn() with the correct number of args and check_unfenced=1, so maybe this is the result of a change that got missed in that particular spot. Anyway, assuming that fifth arg should be 1 like in the call in drm_bo_vm_nopfn(), I've provided a one-liner patch to that effect. It looks like this can still be applied to current git. Thanks.
Closing, must be fixed by now.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.