[uml-devel] [PATCH] UML - Fix incompatible types warning in previous SG fix

2007-10-29 Thread Jeff Dike
From: WANG Cong <[EMAIL PROTECTED]> Fix an incompatible-pointer warning. Signed-off-by: WANG Cong <[EMAIL PROTECTED]> Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> --- arch/um/drivers/ubd_kern.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/arch/um/drivers/ubd_kern.c

[uml-devel] [PATCH] Correctly strip kernel defines from userspace CFLAGS

2007-10-29 Thread Jeff Dike
KERNEL_DEFINES needs whitespace trimmed, otherwise the whitespace crunching done by make fools the patsubst which is used to remove KERNEL_DEFINES from USER_CFLAGS. Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> --- arch/um/Makefile |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) I

Re: [uml-devel] [Git Patch] arch/um/os-Linux/: varied improvements and fixes

2007-10-29 Thread Jeff Dike
On Sun, Oct 28, 2007 at 03:38:43PM +0800, WANG Cong wrote: > This patch contains varied fixes and improvements for some files under > arch/um/os-Linux/, such as a typo fix in a perror message, a missing > argument fix for a printf, some constifying for pointers and so on. Generally looks good, tha