summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2014-11-05 00:28:15 +0000
committerdlg <dlg@openbsd.org>2014-11-05 00:28:15 +0000
commitaf882171b6cd071a2e0e8bd55998d5ebc5be700b (patch)
tree8da518d98256d074eed53a3022114a83aee697ed
parentConvert EXAMPLES to IDIOMS and make it a simple select -> poll (diff)
downloadwireguard-openbsd-af882171b6cd071a2e0e8bd55998d5ebc5be700b.tar.xz
wireguard-openbsd-af882171b6cd071a2e0e8bd55998d5ebc5be700b.zip
change the mbuf pool wait channel name from mbpl to mbufpl. "mb"
isnt descriptive enough for me. ok deraadt@
-rw-r--r--sys/kern/uipc_mbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c
index 64d05d8d906..3c03cdc5167 100644
--- a/sys/kern/uipc_mbuf.c
+++ b/sys/kern/uipc_mbuf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uipc_mbuf.c,v 1.197 2014/10/03 02:16:21 dlg Exp $ */
+/* $OpenBSD: uipc_mbuf.c,v 1.198 2014/11/05 00:28:15 dlg Exp $ */
/* $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $ */
/*
@@ -144,7 +144,7 @@ mbinit(void)
panic("mbinit: the largest cluster size != MAXMCLBYTES");
#endif
- pool_init(&mbpool, MSIZE, 0, 0, 0, "mbpl", NULL);
+ pool_init(&mbpool, MSIZE, 0, 0, 0, "mbufpl", NULL);
pool_setipl(&mbpool, IPL_NET);
pool_set_constraints(&mbpool, &kp_dma_contig);
pool_setlowat(&mbpool, mblowat);