aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_usrreq.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2004-12-23 01:19:27 +0000
committerRobert Watson <rwatson@FreeBSD.org>2004-12-23 01:19:27 +0000
commit38e6a58c7738a809c60db77c8b88d2171cb28cc5 (patch)
treeffa1fc08e8d432d45f515711fe8730b785094f68 /sys/kern/uipc_usrreq.c
parent1ef121cf6b0f22f57e1c0ccc0ba1bb49a571221e (diff)
downloadsrc-38e6a58c7738a809c60db77c8b88d2171cb28cc5.tar.gz
src-38e6a58c7738a809c60db77c8b88d2171cb28cc5.zip
Remove temporary debugging printf that was used to detect the presence
of a race that had previously caused a panic in order to determine if the fix was for the right problem. It was. MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=139218
Diffstat (limited to 'sys/kern/uipc_usrreq.c')
-rw-r--r--sys/kern/uipc_usrreq.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c
index 31b622d5a9e1..9976055d0be8 100644
--- a/sys/kern/uipc_usrreq.c
+++ b/sys/kern/uipc_usrreq.c
@@ -907,10 +907,6 @@ unp_connect(so, nam, td)
UNP_LOCK();
unp = sotounpcb(so);
if (unp == NULL) {
- /*
- * XXXRW: Temporary debugging printf.
- */
- printf("unp_connect(): lost race to another thread\n");
error = EINVAL;
goto bad2;
}