mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* vesafb mtrr setup question
@ 2003-08-25 19:43 Arvind Sankar
  2003-08-26 15:42 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Arvind Sankar @ 2003-08-25 19:43 UTC (permalink / raw)
  To: linux-kernel

The following lines are pulled out of drivers/video/vesafb.c (2.4.20):
Line 646 onwards..

> if (mtrr) {
>         int temp_size = video_size;
>         /* Find the largest power-of-two */
>         while (temp_size & (temp_size - 1))
>                 temp_size &= (temp_size - 1);
>                 
In the first place, the power of two computation computes the largest
power of 2 that is _smaller_ than video_size, so it looks like an
off-by-1 bug.

>         /* Try and find a power of two to add */
>         while (temp_size && mtrr_add(video_base, temp_size, MTRR_TYPE_WRCOMB, 1)==-EINVAL) {
>                 temp_size >>= 1;
>         }
> }

Secondly, what's the point of requesting a smaller write-combining
segment that won't cover all the video memory being used? If it fails
the first time round, shouldn't we either give up or attempt requesting
several contiguous segments?

-- arvind

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

end of thread, other threads:[~2003-08-27 15:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-25 19:43 vesafb mtrr setup question Arvind Sankar
2003-08-26 15:42 ` Alan Cox
2003-08-26 15:50   ` Arvind Sankar
2003-08-27 15:14     ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®