The patch titled fbcon: fix limited scroll in SCROLL_PAN_REDRAW mode has been removed from the -mm tree. Its filename is fbcon-fix-limited-scroll-in-scroll_pan_redraw-mode.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fbcon: fix limited scroll in SCROLL_PAN_REDRAW mode From: Malcom Parsons <malcolm.parsons@xxxxxxxxx> When scrolling up in SCROLL_PAN_REDRAW mode with a large limited scroll region, the bottom few lines have to be redrawn. Without this patch, the wrong text is drawn into these lines, corrupting the display. Observed in 2.6.14 when running an IRC client in the Nintendo DS linux port. I haven't tested if scrolling down has the same problem. Signed-off-by: Antonino Daplas <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/console/fbcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/console/fbcon.c~fbcon-fix-limited-scroll-in-scroll_pan_redraw-mode drivers/video/console/fbcon.c --- devel/drivers/video/console/fbcon.c~fbcon-fix-limited-scroll-in-scroll_pan_redraw-mode 2006-06-08 00:31:50.000000000 -0700 +++ devel-akpm/drivers/video/console/fbcon.c 2006-06-08 00:31:50.000000000 -0700 @@ -1745,7 +1745,7 @@ static int fbcon_scroll(struct vc_data * fbcon_redraw_move(vc, p, 0, t, count); ypan_up_redraw(vc, t, count); if (vc->vc_rows - b > 0) - fbcon_redraw_move(vc, p, b - count, + fbcon_redraw_move(vc, p, b, vc->vc_rows - b, b); } else fbcon_redraw_move(vc, p, t + count, b - t - count, t); _ Patches currently in -mm which might be from malcolm.parsons@xxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html