summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2014-11-04 15:24:41 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2014-11-04 15:24:41 +0000
commit734849c7bf5bb3b1a3452a3fc3d1241104bab0df (patch)
tree68b89bbcb4bb12f26381fbea4feaf5b17607cca4 /sys/netinet
parentb1dd20832a6c80833c307186fc4688753e642eda (diff)
Remove "pl" suffix on pool names.
ok dlg@, uebayasi@, mikeb@
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_input.c8
-rw-r--r--sys/netinet/tcp_input.c4
-rw-r--r--sys/netinet/tcp_subr.c10
3 files changed, 9 insertions, 13 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 63496171a1b..ab1cac3b971 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_input.c,v 1.239 2014/11/01 21:40:38 mpi Exp $ */
+/* $OpenBSD: ip_input.c,v 1.240 2014/11/04 15:24:40 mpi Exp $ */
/* $NetBSD: ip_input.c,v 1.30 1996/03/16 23:53:58 christos Exp $ */
/*
@@ -155,10 +155,8 @@ ip_init(void)
const u_int16_t defbaddynamicports_tcp[] = DEFBADDYNAMICPORTS_TCP;
const u_int16_t defbaddynamicports_udp[] = DEFBADDYNAMICPORTS_UDP;
- pool_init(&ipqent_pool, sizeof(struct ipqent), 0, 0, 0, "ipqepl",
- NULL);
- pool_init(&ipq_pool, sizeof(struct ipq), 0, 0, 0, "ipqpl",
- NULL);
+ pool_init(&ipqent_pool, sizeof(struct ipqent), 0, 0, 0, "ipqe", NULL);
+ pool_init(&ipq_pool, sizeof(struct ipq), 0, 0, 0, "ipq", NULL);
pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW);
if (pr == 0)
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 09c7b728717..9b1b458c243 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.281 2014/10/24 17:58:47 bluhm Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.282 2014/11/04 15:24:40 mpi Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -3409,7 +3409,7 @@ syn_cache_init()
/* Initialize the syn cache pool. */
pool_init(&syn_cache_pool, sizeof(struct syn_cache), 0, 0, 0,
- "synpl", NULL);
+ "syncache", NULL);
}
void
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index 768c2b76821..d46914a5e00 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_subr.c,v 1.133 2014/10/20 03:43:40 tedu Exp $ */
+/* $OpenBSD: tcp_subr.c,v 1.134 2014/11/04 15:24:40 mpi Exp $ */
/* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */
/*
@@ -151,13 +151,11 @@ void
tcp_init()
{
tcp_iss = 1; /* wrong */
- pool_init(&tcpcb_pool, sizeof(struct tcpcb), 0, 0, 0, "tcpcbpl",
- NULL);
- pool_init(&tcpqe_pool, sizeof(struct tcpqent), 0, 0, 0, "tcpqepl",
- NULL);
+ pool_init(&tcpcb_pool, sizeof(struct tcpcb), 0, 0, 0, "tcpcb", NULL);
+ pool_init(&tcpqe_pool, sizeof(struct tcpqent), 0, 0, 0, "tcpqe", NULL);
pool_sethardlimit(&tcpqe_pool, tcp_reass_limit, NULL, 0);
#ifdef TCP_SACK
- pool_init(&sackhl_pool, sizeof(struct sackhole), 0, 0, 0, "sackhlpl",
+ pool_init(&sackhl_pool, sizeof(struct sackhole), 0, 0, 0, "sackhl",
NULL);
pool_sethardlimit(&sackhl_pool, tcp_sackhole_limit, NULL, 0);
#endif /* TCP_SACK */