All of lore.kernel.org
 help / color / mirror / Atom feed
* [uml-devel] uml-patch-2.4.22-4
@ 2003-09-14  3:17 Jeff Dike
       [not found] ` <3F63E156.7070501@davidcoulson.net>
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Jeff Dike @ 2003-09-14  3:17 UTC (permalink / raw)
  To: user-mode-linux-devel

This is a major cleanup patch.  It's mostly due to Steve Schmidtke, the 
wild and wacky guy who brought sound support to UML.  He seems to be taking
his medications more consistently now, with the result that he sent in a 
comparatively sane patch which makes UML make much better use of the os_* 
interfaces.

There are also a couple of cleanups from Stian, and also from me, since I
was feeling left out of all the fun.

				Jeff



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
       [not found] ` <3F63E156.7070501@davidcoulson.net>
@ 2003-09-14 13:47   ` Jeff Dike
  0 siblings, 0 replies; 10+ messages in thread
From: Jeff Dike @ 2003-09-14 13:47 UTC (permalink / raw)
  To: David Coulson; +Cc: user-mode-linux-devel

david@davidcoulson.net said:
> What is CONFIG_DEV_ANON and why would I want it? 

Hmmm, maybe you'd better turn it on for the time being.

You don't really want it.  It's an experiment which I didn't bother removing.

				Jeff



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14  3:17 Jeff Dike
       [not found] ` <3F63E156.7070501@davidcoulson.net>
@ 2003-09-14 14:24 ` James Stevenson
  2003-09-14 16:06   ` Jeff Dike
  2003-09-14 15:14 ` David Coulson
  2 siblings, 1 reply; 10+ messages in thread
From: James Stevenson @ 2003-09-14 14:24 UTC (permalink / raw)
  To: Jeff Dike; +Cc: user-mode-linux-devel


Hi

I get the following missing.
I see these under 2.4.22-um3 as well.

Compiled from the cvs.

Does anyone know what mmu_gathers is ?

gcc -Wl,-T,arch/um/link.ld -static -Wl,--wrap,malloc -Wl,--wrap,free 
-Wl,--wrap,calloc \
	-o linux arch/um/main.o vmlinux.o -L/usr/lib -lutil
vmlinux.o: In function `zap_page_range':
/mnt/home/james/kernel-build/linux-2.4.22-um4/include/asm-generic/tlb.h:42: 
undefined reference to `mmu_gathers'
/mnt/home/james/kernel-build/linux-2.4.22-um4/include/asm-generic/tlb.h:44: 
undefined reference to `mmu_gathers'
/mnt/home/james/kernel-build/linux-2.4.22-um4/include/asm-generic/tlb.h:46: 
undefined reference to `mmu_gathers'

thanks
	James

On Sat, 13 Sep 2003, Jeff Dike wrote:

> This is a major cleanup patch.  It's mostly due to Steve Schmidtke, the 
> wild and wacky guy who brought sound support to UML.  He seems to be taking
> his medications more consistently now, with the result that he sent in a 
> comparatively sane patch which makes UML make much better use of the os_* 
> interfaces.
> 
> There are also a couple of cleanups from Stian, and also from me, since I
> was feeling left out of all the fun.
> 
> 				Jeff
> 
> 
> 
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> User-mode-linux-devel mailing list
> User-mode-linux-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
> 



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14  3:17 Jeff Dike
       [not found] ` <3F63E156.7070501@davidcoulson.net>
  2003-09-14 14:24 ` James Stevenson
@ 2003-09-14 15:14 ` David Coulson
  2003-09-14 16:06   ` Jeff Dike
  2 siblings, 1 reply; 10+ messages in thread
From: David Coulson @ 2003-09-14 15:14 UTC (permalink / raw)
  To: Jeff Dike; +Cc: user-mode-linux-devel

Jeff Dike wrote:
> This is a major cleanup patch.  It's mostly due to Steve Schmidtke, the 
> wild and wacky guy who brought sound support to UML.  He seems to be taking
> his medications more consistently now, with the result that he sent in a 
> comparatively sane patch which makes UML make much better use of the os_* 
> interfaces.

+               if(n < 0) return(n)
+               return(-EIO);

Someone, er, missed off a ; :-)

David

-- 
David Coulson                                    email: d@vidcoulson.com
Linux Developer /                          web: http://davidcoulson.net/
Network Engineer                                   phone: (216) 533-6967



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14 14:24 ` James Stevenson
@ 2003-09-14 16:06   ` Jeff Dike
  2003-09-14 23:10     ` James Stevenson
  0 siblings, 1 reply; 10+ messages in thread
From: Jeff Dike @ 2003-09-14 16:06 UTC (permalink / raw)
  To: James Stevenson; +Cc: user-mode-linux-devel

james@stev.org said:
> Does anyone know what mmu_gathers is ? 

Turn off CONFIG_SMP for now.

			Jeff



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14 15:14 ` David Coulson
@ 2003-09-14 16:06   ` Jeff Dike
  0 siblings, 0 replies; 10+ messages in thread
From: Jeff Dike @ 2003-09-14 16:06 UTC (permalink / raw)
  To: David Coulson; +Cc: user-mode-linux-devel

david@davidcoulson.net said:
> Someone, er, missed off a ; :-) 

There were two of those...

			Jeff



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
@ 2003-09-14 16:51 Steve Schmidtke
  2003-09-14 17:48 ` Jeff Dike
  2003-09-14 17:54 ` David Coulson
  0 siblings, 2 replies; 10+ messages in thread
From: Steve Schmidtke @ 2003-09-14 16:51 UTC (permalink / raw)
  To: david; +Cc: User-mode-linux-devel

david@davidcoulson.net
>+               if(n < 0) return(n)
>+               return(-EIO);
>
>Someone, er, missed off a ; :-)

Whoops me. and not only once:

tty_log.c:log_chunk() and harddog_user.c:ping_watchdog().

I didn't have either option on in my .config.  I'll re-audit what I did.

Steve

_________________________________________________________________
Help STOP SPAM with the new MSN 8 and get 2 months FREE*   
http://join.msn.com/?page=features/junkmail



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14 16:51 [uml-devel] uml-patch-2.4.22-4 Steve Schmidtke
@ 2003-09-14 17:48 ` Jeff Dike
  2003-09-14 17:54 ` David Coulson
  1 sibling, 0 replies; 10+ messages in thread
From: Jeff Dike @ 2003-09-14 17:48 UTC (permalink / raw)
  To: Steve Schmidtke; +Cc: david, User-mode-linux-devel

steve_schmidtke@hotmail.com said:
> Whoops me. and not only once:
> tty_log.c:log_chunk() and harddog_user.c:ping_watchdog(). 

I have both of those fixed already.

				Jeff



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14 16:51 [uml-devel] uml-patch-2.4.22-4 Steve Schmidtke
  2003-09-14 17:48 ` Jeff Dike
@ 2003-09-14 17:54 ` David Coulson
  1 sibling, 0 replies; 10+ messages in thread
From: David Coulson @ 2003-09-14 17:54 UTC (permalink / raw)
  To: Steve Schmidtke; +Cc: User-mode-linux-devel

Steve Schmidtke wrote:
> Whoops me. and not only once:
> 
> tty_log.c:log_chunk() and harddog_user.c:ping_watchdog().
> 
> I didn't have either option on in my .config.  I'll re-audit what I did.

I don't have tty logging in my kernels, so I missed one too :-)

David

-- 
David Coulson                                    email: d@vidcoulson.com
Linux Developer /                          web: http://davidcoulson.net/
Network Engineer                                   phone: (216) 533-6967



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

* Re: [uml-devel] uml-patch-2.4.22-4
  2003-09-14 16:06   ` Jeff Dike
@ 2003-09-14 23:10     ` James Stevenson
  0 siblings, 0 replies; 10+ messages in thread
From: James Stevenson @ 2003-09-14 23:10 UTC (permalink / raw)
  To: Jeff Dike; +Cc: user-mode-linux-devel


> james@stev.org said:
> > Does anyone know what mmu_gathers is ? 
> 
> Turn off CONFIG_SMP for now.
 
Done and works.

Is this the only thing missing from
SMP or is there more known "hidden" bugs ?

thanks
	James



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

end of thread, other threads:[~2003-09-14 23:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-14 16:51 [uml-devel] uml-patch-2.4.22-4 Steve Schmidtke
2003-09-14 17:48 ` Jeff Dike
2003-09-14 17:54 ` David Coulson
  -- strict thread matches above, loose matches on Subject: below --
2003-09-14  3:17 Jeff Dike
     [not found] ` <3F63E156.7070501@davidcoulson.net>
2003-09-14 13:47   ` Jeff Dike
2003-09-14 14:24 ` James Stevenson
2003-09-14 16:06   ` Jeff Dike
2003-09-14 23:10     ` James Stevenson
2003-09-14 15:14 ` David Coulson
2003-09-14 16:06   ` Jeff Dike

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.