Re: [uml-devel] [PATCH] uml compile fixes

2008-03-31 Thread Alexander van Heukelum
On Mon, 31 Mar 2008 10:03:44 -0400, "Jeff Dike" <[EMAIL PROTECTED]> said: > On Mon, Mar 17, 2008 at 04:38:00PM +0100, Alexander van Heukelum wrote: > > CONFIG_SLOB=y > > > Please review/comment (or create a better patch for this yourself!). > > Try the one below - it's a bit larger, but perhaps c

Re: [uml-devel] syscall failed

2008-03-31 Thread Stian Skjelstad
If this is a common issue/problem, perhaps an informativ error-message can be written when this occure, hinting the user to a possible solution. Stian On Mon, 2008-03-31 at 10:50 -0400, Jeff Dike wrote: > On Fri, Mar 28, 2008 at 10:44:08PM +, Antoine Martin wrote: > > [43492659.84] syscal

Re: [uml-devel] [UML]: uml-net: don't set IFF_ALLMULTI in set_multicast_list

2008-03-31 Thread Patrick McHardy
Jeff Dike wrote: > On Wed, Mar 26, 2008 at 06:46:25AM +0100, Patrick McHardy wrote: >> [UML]: uml-net: don't set IFF_ALLMULTI in set_multicast_list > > I don't really understand this, but the people who do seem to like it, > so I'll drop it in my tree and forward it along if no one else does.

[uml-devel] [PATCH] arch/um/os-Linux/start_up.c: various improvements.

2008-03-31 Thread WANG Cong
This patch - lets ptrace_child become void - adds checking for the return value of change_sig - moves errors info into stderr instead of stdout. Cc: [EMAIL PROTECTED] Signed-off-by: WANG Cong <[EMAIL PROTECTED]> --- arch/um/os-Linux/start_up.c | 14 ++ 1 files changed, 6 inse

Re: [uml-devel] [2.6 patch] remove include/asm-um/keyboard.h

2008-03-31 Thread Jeff Dike
On Mon, Mar 31, 2008 at 01:40:31AM +0300, Adrian Bunk wrote: > This patch removes the unused and broken (the normal asm/keyboard.h > files no longer exists) include/asm-um/keyboard.h > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Thanks, I'll forward this on. Jeff --

Re: [uml-devel] syscall failed

2008-03-31 Thread Jeff Dike
On Fri, Mar 28, 2008 at 10:44:08PM +, Antoine Martin wrote: > FYI: (skas4 host) Woo - a skas4 bug report! However > [43492659.84] syscall_stub_done : ret = -12, offset = 548682067984, > data = 7f115010 > [43492659.84] syscall_stub_done : syscall 9 failed, return value = > 0xf

Re: [uml-devel] small patch for small install problem of uml_utilities

2008-03-31 Thread Jeff Dike
On Wed, Mar 19, 2008 at 08:41:59PM +0100, Christian Krause wrote: > During packaging of uml_utilities I've found a small problem during > "make install": > - install -o 0755 $(BIN) $(DESTDIR)$(BIN_DIR) > + install -m 0755 $(BIN) $(DESTDIR)$(BIN_DIR) Looks right, thanks.

Re: [uml-devel] [UML]: uml-net: don't set IFF_ALLMULTI in set_multicast_list

2008-03-31 Thread Jeff Dike
On Wed, Mar 26, 2008 at 06:46:25AM +0100, Patrick McHardy wrote: > [UML]: uml-net: don't set IFF_ALLMULTI in set_multicast_list I don't really understand this, but the people who do seem to like it, so I'll drop it in my tree and forward it along if no one else does. Jeff --

Re: [uml-devel] [PATCH] uml compile fixes

2008-03-31 Thread Jeff Dike
On Mon, Mar 17, 2008 at 04:38:00PM +0100, Alexander van Heukelum wrote: > CONFIG_SLOB=y > Please review/comment (or create a better patch for this yourself!). Try the one below - it's a bit larger, but perhaps cleaner and more future-proof. Jeff -- Work email -

[uml-devel] about system call (how it run)

2008-03-31 Thread fang zheng
hi : while in user mode, processes have their system calls intercepted and virtualized, in kernel mode, they are released from tracing and their system calls run directly in the host kernel. what I want to know is since in kernel mode ,why the system calls run directly in the host kernel? Does