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
This commit is contained in:
Robert Watson 2004-12-23 01:19:27 +00:00
parent 1ef121cf6b
commit 38e6a58c77
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139218

View File

@ -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;
}