diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2010-01-15 18:20:24 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2010-01-15 18:20:24 +0000 |
commit | efe15de128add506fb4055690c47221eb73d6346 (patch) | |
tree | 865f1922996f1e3e9a3218150ac4c08a5913f99e /sys/netinet/tcp_subr.c | |
parent | 11fef8fbaba31074be2bcaa88ef3f2ecc33861f6 (diff) |
Replace pool_get() + bzero() with pool_get(..., PR_ZERO).
With input from oga@ and krw@
ok oga@ krw@ thib@ markus@ mk@
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 26cba61037b..5cd48cce9c8 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.109 2009/11/13 20:54:05 claudio Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.110 2010/01/15 18:20:23 chl Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -462,10 +462,9 @@ tcp_newtcpcb(struct inpcb *inp) struct tcpcb *tp; int i; - tp = pool_get(&tcpcb_pool, PR_NOWAIT); + tp = pool_get(&tcpcb_pool, PR_NOWAIT|PR_ZERO); if (tp == NULL) return ((struct tcpcb *)0); - bzero((char *) tp, sizeof(struct tcpcb)); TAILQ_INIT(&tp->t_segq); tp->t_maxseg = tcp_mssdflt; tp->t_maxopd = 0; |