diff options
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r-- | sys/netinet/tcp_usrreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index e6a31fa..111a983 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1401,13 +1401,12 @@ tcp_attach(so) return (error); } INP_INFO_WLOCK(&tcbinfo); - error = in_pcballoc(so, &tcbinfo, "tcpinp"); + error = in_pcballoc(so, &tcbinfo); if (error) { INP_INFO_WUNLOCK(&tcbinfo); return (error); } inp = sotoinpcb(so); - INP_LOCK(inp); #ifdef INET6 if (isipv6) { inp->inp_vflag |= INP_IPV6; |