-
- Downloads
[PATCH] fbdev: Fix incorrect unaligned access in little-endian machines
The drawing function cfbfillrect does not work correctly when access is not unsigned-long aligned. It manifests as extra lines of pixels that are not complete drawn. Reversing the shift operator solves the problem, so I would presume that this bug would manifest only on little endian machines. The function cfbcopyarea may also have this bug. Aligned access should present no problems. Signed-off-by:Antonino Daplas <adaplas@pol.net> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
Showing
- drivers/video/cfbcopyarea.c 4 additions, 4 deletionsdrivers/video/cfbcopyarea.c
- drivers/video/cfbfillrect.c 8 additions, 8 deletionsdrivers/video/cfbfillrect.c
- drivers/video/cfbimgblt.c 12 additions, 24 deletionsdrivers/video/cfbimgblt.c
- include/linux/fb.h 12 additions, 0 deletionsinclude/linux/fb.h
Loading
Please register or sign in to comment