mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: [Linux-fbdev-devel] [PATCH] neofb patches
       [not found] <56202.64.139.3.221.1082702638.squirrel@www.foogod.com>
@ 2004-04-23 23:00 ` James Simmons
  2004-04-24  3:15   ` Randy.Dunlap
  2004-04-24 17:29   ` Alex Stewart
  0 siblings, 2 replies; 7+ messages in thread
From: James Simmons @ 2004-04-23 23:00 UTC (permalink / raw)
  To: Alex Stewart
  Cc: Linux Fbdev development list, Geert Uytterhoeven,
	Linux Kernel Mailing List


> Ok, I've got everything except the blanking patch (which isn't finished
> anyway) converted to apply cleanly to James' patched driver source. 
> Everything works fine on my laptop as far as I can tell.  Additional
> feedback is welcome.
> 
> I've put up a web page for the patches.  They can be found at
> http://www.foogod.com/~alex/neofb/

Got it. I merged your patches. I also did a few fixes. The code had issues 
with non byte align images, i.e sparc 12x22 fonts. Now it works. I posted 
at

http://phoenix.infradead.org:~/jsimmons/neofb.diff.gz

This is against the latest kernel.




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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-23 23:00 ` [Linux-fbdev-devel] [PATCH] neofb patches James Simmons
@ 2004-04-24  3:15   ` Randy.Dunlap
  2004-04-24  7:08     ` Alex Stewart
  2004-04-25  3:09     ` James Simmons
  2004-04-24 17:29   ` Alex Stewart
  1 sibling, 2 replies; 7+ messages in thread
From: Randy.Dunlap @ 2004-04-24  3:15 UTC (permalink / raw)
  To: James Simmons; +Cc: alex, linux-fbdev-devel, geert, linux-kernel

On Sat, 24 Apr 2004 00:00:23 +0100 (BST) James Simmons <jsimmons@infradead.org> wrote:

| 
| > Ok, I've got everything except the blanking patch (which isn't finished
| > anyway) converted to apply cleanly to James' patched driver source. 
| > Everything works fine on my laptop as far as I can tell.  Additional
| > feedback is welcome.
| > 
| > I've put up a web page for the patches.  They can be found at
| > http://www.foogod.com/~alex/neofb/
| 
| Got it. I merged your patches. I also did a few fixes. The code had issues 
| with non byte align images, i.e sparc 12x22 fonts. Now it works. I posted 
| at
| 
| http://phoenix.infradead.org:~/jsimmons/neofb.diff.gz
| 
| This is against the latest kernel.

Hi James,

I think it would help a bit if someone could load
http://phoenix.infradead.org/~jsimmons/ in a web browser
and be able to see a list of files/patches/etc there
instead of having to know an exact file name to grab.

--
~Randy

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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-24  3:15   ` Randy.Dunlap
@ 2004-04-24  7:08     ` Alex Stewart
  2004-04-25  3:10       ` James Simmons
  2004-04-25  3:09     ` James Simmons
  1 sibling, 1 reply; 7+ messages in thread
From: Alex Stewart @ 2004-04-24  7:08 UTC (permalink / raw)
  To: rddunlap; +Cc: jsimmons, alex, linux-fbdev-devel, geert, linux-kernel

> | http://phoenix.infradead.org:~/jsimmons/neofb.diff.gz
> |
> | This is against the latest kernel.
>
> Hi James,
>
> I think it would help a bit if someone could load
> http://phoenix.infradead.org/~jsimmons/ in a web browser
> and be able to see a list of files/patches/etc there
> instead of having to know an exact file name to grab.

Well, since he only seems to have one patch available at any given time,
this doesn't seem like that big a deal to me, personally..  I was,
however, thinking of suggesting that it might be easier to keep track of
things if there were some sort of version numbers or datestamps or
something in the filename so somebody can tell that this "neofb.diff.gz"
is actually a different patch from the "neofb.diff.gz" that was in exactly
the same place yesterday..

-alex



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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-23 23:00 ` [Linux-fbdev-devel] [PATCH] neofb patches James Simmons
  2004-04-24  3:15   ` Randy.Dunlap
@ 2004-04-24 17:29   ` Alex Stewart
  2004-04-25  0:55     ` James Simmons
  1 sibling, 1 reply; 7+ messages in thread
From: Alex Stewart @ 2004-04-24 17:29 UTC (permalink / raw)
  To: jsimmons; +Cc: alex, linux-fbdev-devel, geert, linux-kernel

> Got it. I merged your patches.

Umm, I would really appreciate it if you didn't silently leave out bits of
my patches and then just say "I merged your patches".  It took me a little
bit to figure out that the reason panning now isn't used for fbconsole
scrolls is because you just didn't bother to put that part of my patch in.

Is there some reason you left out the following piece of my modedb patch?

+       /* Turn on panning for console scroll by default */
+       info->var.yres_virtual = 30000;
+       info->var.accel_flags |= FB_ACCELF_TEXT;
+       if (neofb_check_var(&info->var, info))
+               goto err_map_video;

-alex



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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-24 17:29   ` Alex Stewart
@ 2004-04-25  0:55     ` James Simmons
  0 siblings, 0 replies; 7+ messages in thread
From: James Simmons @ 2004-04-25  0:55 UTC (permalink / raw)
  To: Alex Stewart; +Cc: linux-fbdev-devel, geert, linux-kernel


> Umm, I would really appreciate it if you didn't silently leave out bits of
> my patches and then just say "I merged your patches".  It took me a little
> bit to figure out that the reason panning now isn't used for fbconsole
> scrolls is because you just didn't bother to put that part of my patch in.
> 
> Is there some reason you left out the following piece of my modedb patch?
> 
> +       /* Turn on panning for console scroll by default */
> +       info->var.yres_virtual = 30000;
> +       info->var.accel_flags |= FB_ACCELF_TEXT;
> +       if (neofb_check_var(&info->var, info))
> +               goto err_map_video;

   The reason is because fb_find_mode calls check_var for us. No reason to 
call it twice. The large yres_virtual being 30000 that is not needed any 
longer. The accel flag is set in neofb_check_var. The current test is

if (var->bits_per_pixel >= 24 || !par->neo2200)
	var->accel_flags &= ~FB_ACCEL_TEXT;

Should we drop the bpp >= 24 test? Do you observe this problem at all 
depths.







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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-24  3:15   ` Randy.Dunlap
  2004-04-24  7:08     ` Alex Stewart
@ 2004-04-25  3:09     ` James Simmons
  1 sibling, 0 replies; 7+ messages in thread
From: James Simmons @ 2004-04-25  3:09 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: alex, linux-fbdev-devel, geert, linux-kernel


> Hi James,
> 
> I think it would help a bit if someone could load
> http://phoenix.infradead.org/~jsimmons/ in a web browser
> and be able to see a list of files/patches/etc there
> instead of having to know an exact file name to grab.

Your right. I have to wipe up a web page for that.



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

* Re: [Linux-fbdev-devel] [PATCH] neofb patches
  2004-04-24  7:08     ` Alex Stewart
@ 2004-04-25  3:10       ` James Simmons
  0 siblings, 0 replies; 7+ messages in thread
From: James Simmons @ 2004-04-25  3:10 UTC (permalink / raw)
  To: Alex Stewart; +Cc: rddunlap, linux-fbdev-devel, geert, linux-kernel


> Well, since he only seems to have one patch available at any given time,
> this doesn't seem like that big a deal to me, personally..  I was,
> however, thinking of suggesting that it might be easier to keep track of
> things if there were some sort of version numbers or datestamps or
> something in the filename so somebody can tell that this "neofb.diff.gz"
> is actually a different patch from the "neofb.diff.gz" that was in exactly
> the same place yesterday..

Okay. I can add a date stamp on it.



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

end of thread, other threads:[~2004-04-25  3:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <56202.64.139.3.221.1082702638.squirrel@www.foogod.com>
2004-04-23 23:00 ` [Linux-fbdev-devel] [PATCH] neofb patches James Simmons
2004-04-24  3:15   ` Randy.Dunlap
2004-04-24  7:08     ` Alex Stewart
2004-04-25  3:10       ` James Simmons
2004-04-25  3:09     ` James Simmons
2004-04-24 17:29   ` Alex Stewart
2004-04-25  0:55     ` James Simmons

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®