Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-22 Thread Henrique de Moraes Holschuh
On Thu, 22 Feb 2001, Jes Sorensen wrote: > Alan forwarded a patch to me from DaveM which fixed it for me. Jes, could you forward it here as well? > The problems I were seeing were much more than every 2 hrs, more like > every 10-15 mins. Anyway it seems it got fixed. I've seen IRC sessions gett

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-22 Thread Jes Sorensen
> "Markus" == Markus Germeier <[EMAIL PROTECTED]> writes: Markus> Tell me if I can provide you with further data to nail down Markus> this bug. Alan forwarded a patch to me from DaveM which fixed it for me. Markus> Jes: I thought about your information that ssh connections do Markus> not sh

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-22 Thread Markus Germeier
Hi all, I did some further investigation and found the following: It seems to me that this is a linux <-> solaris problem. I have no problems with AIX 4.1.4, IRIX 6.5 or WIN2K. However all solaris boxes I have access to (2.6, 7, 8, sparc and intel) give me a "connection closed" after 2h, which i

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread David S. Miller
Alan Cox writes: > Dave - any ideas, shall we back it out and work on it for 2.2.20 ? The one change which is probably causing this is non-critical, so let me study things quickly tonight and if I come up with nothing I'll show you what you can revert safely. Later, David S. Miller [EMAIL PROT

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread Jes Sorensen
> "Markus" == Markus Germeier <[EMAIL PROTECTED]> writes: Markus> Jes Sorensen <[EMAIL PROTECTED]> writes: >> I only see this for connections with incoming traffic where I don't >> send something out (like irc), whereas unused ssh connections seem >> to survive fine. Markus> Just for the rec

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread Markus Germeier
Jes Sorensen <[EMAIL PROTECTED]> writes: > I only see this for connections with incoming traffic where I don't > send something out (like irc), whereas unused ssh connections seem to > survive fine. Just for the record: My example was an idle ssh connection! I believe Alan is correct. I can't r

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread Jes Sorensen
>>>>> "Alan" == Alan Cox <[EMAIL PROTECTED]> writes: >> after upgrading to 2.2.19pre9 (+ 2 NFS-patches, IPv6 enabled) idle >> connections tend to shut down without a visible reason: Alan> Yes I've seen this too. It seems that the tcp changes

Re: Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread Alan Cox
> after upgrading to 2.2.19pre9 (+ 2 NFS-patches, IPv6 enabled) idle > connections tend to shut down without a visible reason: Yes I've seen this too. It seems that the tcp changes broke the keepalive handling somewhere when I leave a non Linux target idle. Dave - any ideas, shall

Problem with 2.2.19pre9 (Connection closed.)

2001-02-21 Thread Markus Germeier
Hello, after upgrading to 2.2.19pre9 (+ 2 NFS-patches, IPv6 enabled) idle connections tend to shut down without a visible reason: client->ssh server Last login: Mon Feb 19 2001 18:01:12 from client.domain Sun Microsystems Inc. SunOS 5.8 Generic February 2000 You have mail. ser

syslinux+2.2.19pre9 "oops at Kernel Boot time"

2001-02-20 Thread Sven Geggus
Hi there, I ran into a boot Problem on an embedded Box (AMD Elan400 based) using syslinux and a 2.2.19pre7 Kernel (does not work on 2.2.19pre9 as well). Strange enough the box boots just fine when using a raw boot kernel on Floppy Disk instead of syslinux using exactly the same Kernelimage and

Re: 2.2.19pre9 Kernel panic aic7xxx

2001-02-12 Thread Doug Ledford
Carlos Carvalho wrote: > > Doug Ledford ([EMAIL PROTECTED]) wrote on 9 February 2001 16:41: > >The latest patch I sent Alan had both the hosts.c fix and some other fixes, so > >I'm thinking it hasn't made it into his 2.2.19pre9 kernel. The next one > >sho

Re: 2.2.19pre9 Kernel panic aic7xxx

2001-02-12 Thread Carlos Carvalho
Doug Ledford ([EMAIL PROTECTED]) wrote on 9 February 2001 16:41: >The latest patch I sent Alan had both the hosts.c fix and some other fixes, so >I'm thinking it hasn't made it into his 2.2.19pre9 kernel. The next one >should work fine as far as aic7xxx is concerned. I th

Re: 2.2.19pre9

2001-02-11 Thread Andreas Tobler
Was there an anouncement for pre9? Did I miss it? Andreas - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/

2.2.19pre9 & aic7xxx

2001-02-10 Thread Lukasz Trabinski
Hello In linux/drivers/scsi/hosts.c we have line: #include "aic7xxx.h" and during compilation we gets a error: hosts.c:139: aic7xxx.h: No such file or directory hosts.c:500: `AIC7XXX' undeclared here (not in a function) hosts.c:500: initializer element for `builtin_scsi_hosts[0]' is not constant

Re: 2.2.19pre9 Kernel panic aic7xxx

2001-02-09 Thread Doug Ledford
- > > The machine waits "ad infinitum". > The latest patch I sent Alan had both the hosts.c fix and some other fixes, so I'm thinking it hasn't made it into his 2.2.19pre9 kernel. The next one should work fine as far as aic7xxx is concerned. --

2.2.19pre9 Kernel panic aic7xxx

2001-02-09 Thread Mario Vanoni
1st correction in drivers/scsi/hosts.c (Shane Wegner), see lkml, otherwise does not compile. Hand written, may not be 100% correct: Detected CD-ROM sr1 at scsi0, channel 0, id 5, lun 0 (scsi1) BRKADRINT error (0x4): Illegal Opcode in sequen

One liner: compile failure with 2.2.19pre9 aic7xxx

2001-02-08 Thread Shane Wegner
Hi, Seems aic7xxx.h got lost. --- drivers/scsi/hosts.c.orig Thu Feb 8 16:32:00 2001 +++ drivers/scsi/hosts.cThu Feb 8 16:29:48 2001 @@ -136,7 +136,7 @@ #endif #ifdef CONFIG_SCSI_AIC7XXX -#include "aic7xxx.h" +#include "aic7xxx/aic7xxx.h" #endif #ifdef CONFIG_SCSI_IPS -- Shane