Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 4 Mar 2003 16:36:17 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 4 Mar 2003 16:36:17 -0500 Received: from vana.vc.cvut.cz ([147.32.240.58]:62849 "EHLO vana.vc.cvut.cz") by vger.kernel.org with ESMTP id ; Tue, 4 Mar 2003 16:36:16 -0500 Date: Tue, 4 Mar 2003 22:46:32 +0100 From: Petr Vandrovec To: Jurriaan Cc: Antonino Daplas , James Simmons , Linux Kernel Mailing List , Linux Fbdev development list Subject: Re: [Linux-fbdev-devel] Re: FBdev updates. Message-ID: <20030304214632.GA1756@vana.vc.cvut.cz> References: <20030220150201.GD13507@codemonkey.org.uk> <20030220182941.GK14445@vana.vc.cvut.cz> <1045787031.2051.9.camel@localhost.localdomain> <20030303203500.GA2916@vana.vc.cvut.cz> <20030304212906.GA1115@middle.of.nowhere> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030304212906.GA1115@middle.of.nowhere> User-Agent: Mutt/1.5.3i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1400 Lines: 36 On Tue, Mar 04, 2003 at 10:29:06PM +0100, Jurriaan wrote: > > text mode. > > There is a regression here: I boot my kernel like this: > > kernel /boot/vmlinuz-2563matrox root=/dev/hda7 video=matrox:vesa:0x11E,fv:80,sgram hdc=scsi apm=smp apm=power-off nosmp=1 > > I see a continuous strip of alternating blocks, of sub-character size, > at the extreme right end of my screen. The colors seem linked to the > color of the line with the cursor in some way. > > After leaving XFRee, a piece of chbg's background picture is shown for a > short while, then the blocks return. Reproduced. Try this (untested) (it is against clean tree, so you'll get some line offsets if you had applied my matroxfb patch). Or set xres to odd value, even values do not work... Petr Vandrovec --- linux/drivers/video/console/fbcon.c 2003-03-03 18:42:37.000000000 +0100 +++ linux/drivers/video/console/fbcon.c 2003-03-04 22:44:05.000000000 +0100 @@ -456,7 +456,7 @@ region.color = attr_bgcol_ec(p, vc); region.rop = ROP_COPY; - if (rw & !bottom_only) { + if (rw && !bottom_only) { region.dx = info->var.xoffset + rs; region.dy = 0; region.width = rw; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/