aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorAndre Oppermann <andre@FreeBSD.org>2013-05-06 16:42:18 +0000
committerAndre Oppermann <andre@FreeBSD.org>2013-05-06 16:42:18 +0000
commitf89d4c3acfe13b50f4fff057f37151a300b00381 (patch)
treebc5a2ce870d8be82a3e6edc11f23760b66ef0c33 /sys/netinet/tcp_subr.c
parente639aa9e4e4f8cf352b9f05ae5b7539bdd6e2125 (diff)
downloadsrc-f89d4c3acfe13b50f4fff057f37151a300b00381.tar.gz
src-f89d4c3acfe13b50f4fff057f37151a300b00381.zip
Back out r249318, r249320 and r249327 due to a heisenbug most
likely related to a race condition in the ipi_hash_lock with the exact cause currently unknown but under investigation.
Notes
Notes: svn path=/head/; revision=250300
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index 1236d7dde4b4..e87d58ecc6ed 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -255,7 +255,7 @@ static VNET_DEFINE(uma_zone_t, tcpcb_zone);
#define V_tcpcb_zone VNET(tcpcb_zone)
MALLOC_DEFINE(M_TCPLOG, "tcplog", "TCP address and flags print buffers");
-static struct mtx_padalign isn_mtx;
+static struct mtx isn_mtx;
#define ISN_LOCK_INIT() mtx_init(&isn_mtx, "isn_mtx", NULL, MTX_DEF)
#define ISN_LOCK() mtx_lock(&isn_mtx)