Re: 2.0.30 oops, gdb debug info included

Dan Hollis (goemon@sasami.anime.net)
Mon, 5 May 1997 00:57:58 -0700 (PDT)


On Mon, 5 May 1997, David S. Miller wrote:
> From: Dan Hollis <goemon@sasami.anime.net>
>
> Looks like squid blew up. Right before the GP, we had reports that the
> squid proxy was very very slow (e.g. taking +5 seconds to respond to
> requests).
>
> (You provided gdb dumps of the call backtrace but not where EIP was,
> I am going to assume it was in tcp_recvmsg() as that is where the
> other OOPS reports have been that sound like this one)

Gah. Here's the EIP backtrace, I forgot it.

(gdb) l *0x00145718
0x145718 is in tcp_recvmsg (tcp.c:1642).
1637 while (skb != (struct sk_buff *)&sk->receive_queue)
1638 {
1639 if (before(*seq, skb->seq))
1640 break;
1641 offset = *seq - skb->seq;
1642 if (skb->h.th->syn)
1643 offset--;
1644 if (offset < skb->len)
1645 goto found_ok_skb;
1646 if (skb->h.th->fin)

> Does the patch I sent out today cure this?

I'll give it a spin.

-Dan