linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: Re:2.5.70-mm4
  2003-06-04 11:08 Vitalis Tiknius
@ 2003-06-04 10:12 ` Alan Cox
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Cox @ 2003-06-04 10:12 UTC (permalink / raw)
  To: Vitalis Tiknius; +Cc: Linux Kernel Mailing List

On Mer, 2003-06-04 at 12:08, Vitalis Tiknius wrote:
> re. cdrom mount problem: so far, so good with all combinations.
> 
> vesafb problem: does not work with memory >1Gb.

There is a more complete fix in the -ac tree. The one you have there is
ought on memory allocation by a factor of eight and doesn't allow for
double buffering and catching some corner cases.

The 2.4 one has been evolving somewhat over time


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re:2.5.70-mm4
@ 2003-06-04 11:08 Vitalis Tiknius
  2003-06-04 10:12 ` Re:2.5.70-mm4 Alan Cox
  0 siblings, 1 reply; 2+ messages in thread
From: Vitalis Tiknius @ 2003-06-04 11:08 UTC (permalink / raw)
  To: linux-kernel

re. cdrom mount problem: so far, so good with all combinations.

vesafb problem: does not work with memory >1Gb.

with patch:

--- vesafb.c.old	2003-06-04 12:12:03.000000000 +0200
+++ vesafb.c	2003-06-04 12:40:28.000000000 +0200
@@ -227,7 +227,7 @@
 	vesafb_defined.xres = screen_info.lfb_width;
 	vesafb_defined.yres = screen_info.lfb_height;
 	vesafb_fix.line_length = screen_info.lfb_linelength;
-	vesafb_fix.smem_len = screen_info.lfb_size * 65536;
+	vesafb_fix.smem_len = screen_info.lfb_width * screen_info.lfb_height * 
vesafb_defined.bits_per_pixel;
 	vesafb_fix.visual   = (vesafb_defined.bits_per_pixel == 8) ?
 		FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
 
from http://bugs.gentoo.org/show_bug.cgi?id=19061 all is ok. it is not the 
time to apply this patch?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-06-04 10:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-04 11:08 Vitalis Tiknius
2003-06-04 10:12 ` Re:2.5.70-mm4 Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).