[uml-devel] infinite symlink loop for "sysdep-i386"
in arch/um/include/sysdep-i386: $ ls -l total 96 -rw-rw-r-- 1 rpjday rpjday 363 2007-08-28 06:10 archsetjmp.h -rw-rw-r-- 1 rpjday rpjday 281 2007-08-28 06:10 barrier.h -rw-rw-r-- 1 rpjday rpjday 5080 2007-08-28 06:10 checksum.h -rw-rw-r-- 1 rpjday rpjday 903 2007-08-28 06:10 faultinfo.h -rw-rw-r-- 1 rpjday rpjday 468 2007-10-16 13:42 kernel-offsets.h -rw-rw-r-- 1 rpjday rpjday 4897 2007-10-16 13:42 ptrace.h -rw-rw-r-- 1 rpjday rpjday 1669 2007-08-28 06:10 ptrace_user.h -rw-rw-r-- 1 rpjday rpjday 1757 2007-08-28 06:10 sc.h -rw-rw-r-- 1 rpjday rpjday 615 2007-10-16 13:42 sigcontext.h -rw-rw-r-- 1 rpjday rpjday 374 2007-08-28 06:10 skas_ptrace.h -rw-rw-r-- 1 rpjday rpjday 2199 2007-10-16 13:42 stub.h -rw-rw-r-- 1 rpjday rpjday 731 2007-08-28 06:10 syscalls.h lrwxrwxrwx 1 rpjday rpjday 11 2007-10-22 04:08 sysdep-i386 -> sysdep-i386 ? -rw-rw-r-- 1 rpjday rpjday 769 2007-08-28 06:10 tls.h $ rday -- Robert P. J. Day Linux Consulting, Training and Annoying Kernel Pedantry Waterloo, Ontario, CANADA http://crashcourse.ca - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
Re: [uml-devel] infinite symlink loop for "sysdep-i386"
On Fri, Oct 26, 2007 at 02:48:21AM -0400, Robert P. J. Day wrote: > in arch/um/include/sysdep-i386: > lrwxrwxrwx 1 rpjday rpjday 11 2007-10-22 04:08 sysdep-i386 -> sysdep-i386 > ? Sorry about the delay... I don't have any such animal here - can you make this happen on a clean tree? Jeff -- Work email - jdike at linux dot intel dot com - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
Re: [uml-devel] [PATCH] uml: removing xmm detection
On Thu, Oct 25, 2007 at 09:10:25PM +0200, Magotari wrote: > This patch removes some code which ran at every boot, but does not > seem to do anything anymore. Please test. It works for me but mistakes > can happen. > > Karol Swietlicki > > Signed-off-by: Karol Swietlicki <[EMAIL PROTECTED]> Thanks, this is in my tree. Jeff -- Work email - jdike at linux dot intel dot com - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
Re: [uml-devel] infinite symlink loop for "sysdep-i386"
On Fri, 26 Oct 2007, Jeff Dike wrote: > On Fri, Oct 26, 2007 at 02:48:21AM -0400, Robert P. J. Day wrote: > > in arch/um/include/sysdep-i386: > > > lrwxrwxrwx 1 rpjday rpjday 11 2007-10-22 04:08 sysdep-i386 -> sysdep-i386 > > ? > > Sorry about the delay... > > I don't have any such animal here - can you make this happen on a clean tree? ok, i just cleaned my git clone of everything but the .git directory, did a "git pull" to make sure i'm up to date, then checked everything out again with "git checkout -f", and now it's gone. weird. i'll try to figure out what i was doing that caused it, since i'm not doing *anything* with UML at the moment. rday -- Robert P. J. Day Linux Consulting, Training and Annoying Kernel Pedantry Waterloo, Ontario, CANADA http://crashcourse.ca - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
[uml-devel] [Git Patch]arch/um/drivers/ubd_kern.c: a warning fix
Fix an incompatible-pointer warning. Signed-off-by: WANG Cong <[EMAIL PROTECTED]> --- arch/um/drivers/ubd_kern.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c index e184b44..7e6cdde 100644 --- a/arch/um/drivers/ubd_kern.c +++ b/arch/um/drivers/ubd_kern.c @@ -705,7 +705,7 @@ static int ubd_add(int n, char **error_out) ubd_dev->size = ROUND_BLOCK(ubd_dev->size); INIT_LIST_HEAD(&ubd_dev->restart); - sg_init_table(&ubd_dev->sg, MAX_SG); + sg_init_table(ubd_dev->sg, MAX_SG); err = -ENOMEM; ubd_dev->queue = blk_init_queue(do_ubd_request, &ubd_dev->lock); - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ ___ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel