Index: netinet/in_pcb.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/in_pcb.c,v retrieving revision 1.138 diff -u -p -r1.138 in_pcb.c --- netinet/in_pcb.c 25 Mar 2004 15:12:12 -0000 1.138 +++ netinet/in_pcb.c 26 Mar 2004 09:19:48 -0000 @@ -155,10 +155,9 @@ SYSCTL_INT(_net_inet_ip_portrange, OID_A * Allocate a PCB and associate it with the socket. */ int -in_pcballoc(so, pcbinfo, td, type) +in_pcballoc(so, pcbinfo, type) struct socket *so; struct inpcbinfo *pcbinfo; - struct thread *td; const char *type; { register struct inpcb *inp; Index: netinet/in_pcb.h =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/in_pcb.h,v retrieving revision 1.69 diff -u -p -r1.69 in_pcb.h --- netinet/in_pcb.h 25 Mar 2004 15:12:12 -0000 1.69 +++ netinet/in_pcb.h 26 Mar 2004 09:19:32 -0000 @@ -337,8 +337,7 @@ extern int ipport_hifirstauto; extern int ipport_hilastauto; void in_pcbpurgeif0(struct inpcbinfo *, struct ifnet *); -int in_pcballoc(struct socket *, struct inpcbinfo *, struct thread *, - const char *); +int in_pcballoc(struct socket *, struct inpcbinfo *, const char *); int in_pcbbind(struct inpcb *, struct sockaddr *, struct thread *); int in_pcbbind_setup(struct inpcb *, struct sockaddr *, in_addr_t *, u_short *, struct thread *); Index: netinet/ip_divert.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/ip_divert.c,v retrieving revision 1.85 diff -u -p -r1.85 ip_divert.c --- netinet/ip_divert.c 26 Feb 2004 00:27:03 -0000 1.85 +++ netinet/ip_divert.c 26 Mar 2004 09:20:07 -0000 @@ -420,7 +420,7 @@ div_attach(struct socket *so, int proto, INP_INFO_WUNLOCK(&divcbinfo); return error; } - error = in_pcballoc(so, &divcbinfo, td, "divinp"); + error = in_pcballoc(so, &divcbinfo, "divinp"); if (error) { INP_INFO_WUNLOCK(&divcbinfo); return error; Index: netinet/raw_ip.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/raw_ip.c,v retrieving revision 1.126 diff -u -p -r1.126 raw_ip.c --- netinet/raw_ip.c 17 Feb 2004 14:02:37 -0000 1.126 +++ netinet/raw_ip.c 26 Mar 2004 09:20:18 -0000 @@ -536,7 +536,7 @@ rip_attach(struct socket *so, int proto, INP_INFO_WUNLOCK(&ripcbinfo); return error; } - error = in_pcballoc(so, &ripcbinfo, td, "rawinp"); + error = in_pcballoc(so, &ripcbinfo, "rawinp"); if (error) { INP_INFO_WUNLOCK(&ripcbinfo); return error; Index: netinet/tcp_usrreq.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/tcp_usrreq.c,v retrieving revision 1.95 diff -u -p -r1.95 tcp_usrreq.c --- netinet/tcp_usrreq.c 16 Feb 2004 22:21:16 -0000 1.95 +++ netinet/tcp_usrreq.c 26 Mar 2004 09:20:27 -0000 @@ -1203,7 +1203,7 @@ tcp_attach(so, td) if (error) return (error); } - error = in_pcballoc(so, &tcbinfo, td, "tcpinp"); + error = in_pcballoc(so, &tcbinfo, "tcpinp"); if (error) return (error); inp = sotoinpcb(so); Index: netinet/udp_usrreq.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet/udp_usrreq.c,v retrieving revision 1.148 diff -u -p -r1.148 udp_usrreq.c --- netinet/udp_usrreq.c 26 Feb 2004 00:27:03 -0000 1.148 +++ netinet/udp_usrreq.c 26 Mar 2004 09:20:40 -0000 @@ -940,7 +940,7 @@ udp_attach(struct socket *so, int proto, return error; } s = splnet(); - error = in_pcballoc(so, &udbinfo, td, "udpinp"); + error = in_pcballoc(so, &udbinfo, "udpinp"); splx(s); if (error) { INP_INFO_WUNLOCK(&udbinfo); Index: netinet6/raw_ip6.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet6/raw_ip6.c,v retrieving revision 1.39 diff -u -p -r1.39 raw_ip6.c --- netinet6/raw_ip6.c 17 Feb 2004 14:02:37 -0000 1.39 +++ netinet6/raw_ip6.c 26 Mar 2004 09:20:56 -0000 @@ -561,7 +561,7 @@ rip6_attach(struct socket *so, int proto if (error) return error; s = splnet(); - error = in_pcballoc(so, &ripcbinfo, td, "raw6inp"); + error = in_pcballoc(so, &ripcbinfo, "raw6inp"); splx(s); if (error) return error; Index: netinet6/udp6_usrreq.c =================================================================== RCS file: /private/FreeBSD/src/sys/netinet6/udp6_usrreq.c,v retrieving revision 1.44 diff -u -p -r1.44 udp6_usrreq.c --- netinet6/udp6_usrreq.c 17 Feb 2004 14:02:37 -0000 1.44 +++ netinet6/udp6_usrreq.c 26 Mar 2004 09:21:14 -0000 @@ -526,7 +526,7 @@ udp6_attach(struct socket *so, int proto return error; } s = splnet(); - error = in_pcballoc(so, &udbinfo, td, "udp6inp"); + error = in_pcballoc(so, &udbinfo, "udp6inp"); splx(s); if (error) return error;