Re: kernel oops!

2005-01-24 Thread ierdnah
available to be read */ - count = to-ldisc.chars_in_buffer(to); + count = chars_in_buffer(to); if (tty-driver-subtype == PTY_TYPE_SLAVE) return count; -- ierdnah [EMAIL PROTECTED] - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: kernel oops!

2005-01-27 Thread ierdnah
count; -- ierdnah [EMAIL PROTECTED] - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: kernel oops!

2005-01-28 Thread ierdnah
-chars_in_buffer(to); + tty_ldisc_deref(ld); + } + } + } if (tty-driver-subtype == PTY_TYPE_SLAVE) return count; -- ierdnah [EMAIL PROTECTED] - To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: kernel oops!

2005-01-28 Thread ierdnah
a load of 200 with 150 connections -- ierdnah [EMAIL PROTECTED] - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

kernel oops!

2005-01-22 Thread ierdnah
doesn't occur at a particular number of simulationus VPN connection.I can build a kernel with debugging enabled or something to help to track th source of the problem. Please CC as I am not subscribed to this mailing list. -- ierdnah [EMAIL PROTECTED] - To unsubscribe from this list: send

Re: kernel oops!

2005-01-23 Thread ierdnah
happens if the line discipline is reset from ppp to regular (or set to ppp) asymchronously? You've been deep in this area lately.. Linus On Sun, 23 Jan 2005, ierdnah wrote: Jan 22 13:27:59 warsheep Unable to handle kernel NULL pointer dereference at virtual

Re: kernel oops!

2005-01-27 Thread ierdnah
tty_ldisc_deref(ld); + } + } + } if (tty->driver->subtype == PTY_TYPE_SLAVE) return count; -- ierdnah <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the

Re: kernel oops!

2005-01-28 Thread ierdnah
if (ld->chars_in_buffer) { + count = ld->chars_in_buffer(to); + tty_ldisc_deref(ld); + } + } + } if (tty->driver->subtype == PTY_TYPE_SLAVE) return count; -- ierdnah <[EMAIL PROTE

Re: kernel oops!

2005-01-28 Thread ierdnah
nd now, I have a load of 200 with 150 connections -- ierdnah <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Ple

kernel oops!

2005-01-22 Thread ierdnah
tion.I can build a kernel with debugging enabled or something to help to track th source of the problem. Please CC as I am not subscribed to this mailing list. -- ierdnah <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body

Re: kernel oops!

2005-01-23 Thread ierdnah
tee that the ldisc won't _change_? What happens if the > line discipline is reset from ppp to regular (or set to ppp) > asymchronously? You've been deep in this area lately.. > > Linus > > On Sun, 23 Jan 2005, ierdnah wrote: > > > > Jan 22 13

Re: kernel oops!

2005-01-24 Thread ierdnah
; return 0; > > /* The ldisc must report 0 if no characters available to be read */ > - count = to->ldisc.chars_in_buffer(to); > + count = chars_in_buffer(to); > > if (tty->driver->subtype == PTY_TYPE_SLAVE) return count; > > -