Re: [uml-devel] [1/4] 2.6.23-rc6: known regressions

2007-09-13 Thread Mark Lord
Greg KH wrote: > On Wed, Sep 12, 2007 at 10:50:26PM -0400, Mark Lord wrote: >> Michal Piotrowski wrote: >>> Hi all, >>> Here is a list of some known regressions in 2.6.23-rc6. >> ... >> >> Missing from the list: >> >> USB "autosuspend" feature (new in 2.6.23) breaks *lots* of devices. >> Many have

Re: [uml-devel] [1/4] 2.6.23-rc6: known regressions

2007-09-13 Thread Greg KH
On Wed, Sep 12, 2007 at 10:50:26PM -0400, Mark Lord wrote: > Michal Piotrowski wrote: >> Hi all, >> Here is a list of some known regressions in 2.6.23-rc6. > ... > > Missing from the list: > > USB "autosuspend" feature (new in 2.6.23) breaks *lots* of devices. > Many have since been blacklisted in

Re: [uml-devel] [uml-user] Hanging using 'iptables -L' in UML vm booted with con0=pts

2007-09-13 Thread Blaisorblade
On giovedì 13 settembre 2007, Fermín Galán Márquez wrote: > Dear Jeff, > > Jeff Dike wrote: > > On Wed, Sep 12, 2007 at 11:52:32PM +0200, Fermín Galán Márquez wrote: > >> This is the trace (as you can see I're repeated the experiment twice, > >> the result is basically the same), hoping it could be

[uml-devel] (Solved) Hanging using 'iptables -L' in UML vm booted with con0=pts

2007-09-13 Thread Fermín Galán Márquez
Hi, After some more debugging I think I've solved the problem (at least :) An explanation follows. First, although apparently it seemed that the modules causing the problem were the ones related with networking (as David Fernández said in his mail) that assumption was wrong. In fact, the modul

[uml-devel] [PATCH 0/3] UML - Three small patches for 2.6.24

2007-09-13 Thread Jeff Dike
These are two code cleanups and a fix for one of yesterday's patches. 2.6.24 material. Jeff -- Work email - jdike at linux dot intel dot com - This SF.net email is sponsored by: Microsoft Defy all ch

[uml-devel] [PATCH 1/3] UML - Remove an unused file

2007-09-13 Thread Jeff Dike
arch/um/os-Linux/tt.c is no longer used. Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> -- arch/um/os-Linux/tt.c | 195 -- 1 file changed, 195 deletions(-) Index: linux-2.6.22/arch/um/os-Linux/tt.c ===

[uml-devel] [PATCH 2/3] UML - Remove called-once function

2007-09-13 Thread Jeff Dike
init_irq_signals doesn't need to be called from the context of a new process. It initializes handlers, which are useless in process context. With that call gone, init_irq_signals has only one caller, so it can be inlined into init_new_thread_signals. Index: linux-2.6.22/arch/um/include/os.h

[uml-devel] [PATCH 3/3] UML - Fix usec to nsec conversion

2007-09-13 Thread Jeff Dike
microseconds need to be multiplied by a thousand, not a billion, to get nanoseconds. Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> -- arch/um/os-Linux/time.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.22/arch/um/os-Linux/time.c ==