Deleted Added
full compact
30c30
< * $FreeBSD: head/sys/netinet/tcp_usrreq.c 153427 2005-12-14 22:27:48Z mux $
---
> * $FreeBSD: head/sys/netinet/tcp_usrreq.c 157366 2006-04-01 15:15:05Z rwatson $
758c758
< static int
---
> static void
761d760
< int error = 0;
764c763
< const int inirw = INI_WRITE;
---
> TCPDEBUG0;
766c765,771
< COMMON_START();
---
> INP_INFO_WLOCK(&tcbinfo);
> inp = sotoinpcb(so);
> if (inp == NULL)
> return;
> INP_LOCK(inp);
> tp = intotcpcb(inp);
> TCPDEBUG1();
768c773,776
< COMMON_END(PRU_ABORT);
---
> TCPDEBUG2(PRU_ABORT);
> if (tp)
> INP_UNLOCK(inp);
> INP_INFO_WUNLOCK(&tcbinfo);