The patch titled fbcon: fix scrollback with logo issue immediately after boot has been removed from the -mm tree. Its filename is fbcon-fix-scrollback-with-logo-issue-immediately-after-boot.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: fbcon: fix scrollback with logo issue immediately after boot From: David Hollister <david.hollister@xxxxxxx> After the system boots with the logo, if the first action is a scrollback, the screen may become garbled. This patch ensures that the softback_curr value is updated along with softback_in following the scrollback. Signed-off-by: David Hollister <david.hollister@xxxxxxx> Signed-off-by: Jordan Crouse <jordan.crouse@xxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxxxx> 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-scrollback-with-logo-issue-immediately-after-boot drivers/video/console/fbcon.c --- devel/drivers/video/console/fbcon.c~fbcon-fix-scrollback-with-logo-issue-immediately-after-boot 2006-05-30 21:24:54.000000000 -0700 +++ devel-akpm/drivers/video/console/fbcon.c 2006-05-30 21:24:54.000000000 -0700 @@ -2631,7 +2631,7 @@ static int fbcon_scrolldelta(struct vc_d scr_memcpyw((u16 *) q, (u16 *) p, vc->vc_size_row); } - softback_in = p; + softback_in = softback_curr = p; update_region(vc, vc->vc_origin, logo_lines * vc->vc_cols); } _ Patches currently in -mm which might be from david.hollister@xxxxxxx are origin.patch vt-delay-the-update-of-the-visible-console.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