Re: [uml-devel] SKAS mode not working, x86_64 SMP host, x86_64 guest , problems with noprocmm

2006-10-17 Thread Blaisorblade
On Tuesday 17 October 2006 22:21, Nikola Ciprich wrote: > Hi guys, > thanks for suggestions. Now I've been able to track the problem, and it > seems to be arch/um/sys-x86_64/delay.c, function __const_udelay. > halt process hangs at drivers/md/md.c, function md_notify_reboot(...): > it never gets af

[uml-devel] [PATCH 07/10] uml: use DEFCONFIG_LIST to avoid reading host's config

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> This should make sure that, for UML, host's configuration files are not considered, which avoids various pains to the user. Our dependency are such that the obtained Kconfig will be valid and will lead to successful compilation - however the

[uml-devel] [PATCH 10/10] uml: mmapper - remove just added but wrong "const" attribute

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> When enabling the mmapper driver I got warnings because this "const" miscdevice structure is passed to function as non-const pointer; unlike struct tty_operations, however, I verified that misc_{de,}register _do_ modify their parameter, so t

[uml-devel] [PATCH 09/10] uml: kconfig - silence warning

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Silence useless warning about undefined symbol in Kconfig. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- arch/um/Kconfig.char |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/um/Kco

[uml-devel] [PATCH 08/10] uml: cleanup run_helper() API to fix a leak

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Freeing the stack is left uselessly to the caller of run_helper in some cases - this is taken from run_helper_thread, but here it is useless, so no caller needs it and the only place where this happens has a potential leak - in case of error

[uml-devel] [PATCH 06/10] uml: reenable compilation of enable_timer, disabled by mistake

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> CONFIG_MODE_TT does not work there, the UML_ prefixed version must be used - this causes a link-time failure when CONFIG_MODE_TT is enabled (i.e. always here, never by Jeff). Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]>

[uml-devel] [PATCH 04/10] uml: make execvp safe for our usage

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Reimplement execvp for our purposes - after we call fork() it is fundamentally unsafe to use the kernel allocator - current is not valid there. So we simply pass to our modified execvp() a preallocated buffer. This fixes a real bug and works

[uml-devel] [PATCH 05/10] uml: code convention cleanup of a file

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Fix coding conventions violations is arch/um/os-Linux/helper.c. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- arch/um/os-Linux/helper.c | 53 - 1 files changed, 28 inse

[uml-devel] [PATCH 03/10] uml: fix prototypes

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Fix prototypes in user.h - was needed when including user.h in kernelspace, as we did in previous patch. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- arch/um/include/user.h |9 ++--- 1 files changed, 6 ins

[uml-devel] [PATCH 02/10] uml: split memory allocation prototypes out of user.h

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> user.h is too generic a header name. I've split out allocation routines from it. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- arch/um/drivers/cow_sys.h|1 + arch/um/drivers/daemon_user.c

[uml-devel] [PATCH 01/10] uml: remove some leftover PPC code

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> I happened to notice that this code is a leftover and it should be removed - since there are sporadical efforts to revive the PPC port doing such cleanups is not useless. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> ---

[uml-devel] [PATCH 00/10] Various UML patches for 2.6.19

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
Some other tested and little UML fixes for 2.6.19 (not all ones are oneliner, but those ones are tested). -- Inform me of my mistakes, so I can keep imitating Homer Simpson's "Doh!". Paolo Giarrusso, aka Blaisorblade http://www.user-mode-linux.org/~blaisorblade Chiacchiera con i tuoi amici in temp

[uml-devel] uml: fix processor selection to exclude unsupported processors and features

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
Makes UML compile on any possible processor choice. The two problems were: *) x86 code, when 386 is selected, checks at runtime boot_cpuflags, which we do not have. *) 3Dnow support for memcpy() et al. does not compile currently and fixing this is not trivial, so simply disable it; with this

[uml-devel] uml: remove warnings added by previous -stable patch

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Add needed includes for syscall() function, also to remove warnings spit out by GCC; they were added by previous -stable patch, and at least on my system (Ubuntu x86-64) these warnings do show up. Signed-off-by: Paolo 'Blaisorblade' Giarrus

[uml-devel] uml: make Uml compile on FC6 kernel headers

2006-10-17 Thread Paolo 'Blaisorblade' Giarrusso
From: Ulrich Drepper <[EMAIL PROTECTED]> I need this patch to get a UML kernel to compile. This is with the kernel headers in FC6 which are automatically generated from the kernel tree. Some headers are missing but those files don't need them. At least it appears so since the resulting kernel w

[uml-devel] user-mode-linux-devel 様へ、掲示板の女性からメッセー ジがあります

2006-10-17 Thread mbox川田
user-mode-linux-devel様 貴方に1通のメッセージが届きました。 期限までにご確認下さい。 http://www.anokoto.com/mbox - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make you