Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux

Pull drm fix from Dave Airlie:
"An oops snuck in in an -rc3 patch, this fixes it"

* 'drm-fixes' of git://people.freedesktop.org/~airlied/linux:
[PATCH] drm/mm: Fix support 4 GiB and larger ranges

+1 -1
+1 -1
drivers/gpu/drm/drm_mm.c
··· 403 403 unsigned rem; 404 404 405 405 rem = do_div(tmp, alignment); 406 - if (tmp) 406 + if (rem) 407 407 start += alignment - rem; 408 408 } 409 409