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) { + if (ld->chars_in_buffer) { + count = ld->chars_in_buffer(to); + tty_ldisc_deref(ld); + } + } + } if (tty->driver->subtype == PTY_TYPE_SLAVE) return count; -- ierd

Re: kernel oops!

2005-01-28 Thread ierdnah
ections, and 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-inf

kernel oops!

2005-01-22 Thread ierdnah
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 the line "unsubscribe linux-kernel" in

Re: kernel oops!

2005-01-23 Thread ierdnah
hat guarantee 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: > >

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; > > -