Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Feb 2008 21:28:59 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 135985 for review
Message-ID:  <200802222128.m1MLSxsv064249@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=135985

Change 135985 by kmacy@kmacy:entropy:iwarp on 2008/02/22 21:28:40

	mark tcpcb as ESTABLISHED before calling soisconnected

Affected files ...

.. //depot/projects/iwarp/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c#17 edit

Differences ...

==== //depot/projects/iwarp/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c#17 (text+ko) ====

@@ -3424,9 +3424,9 @@
  */
 	dst_confirm(sk->sk_dst_cache);
 #endif
-	soisconnected(so);
 	tp->t_starttime = ticks;
 	tp->t_state = TCPS_ESTABLISHED;
+	soisconnected(so);
 }
 
 static int



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802222128.m1MLSxsv064249>