svn commit: r194554 - head/sys/dev/cxgb

Kip Macy kmacy at FreeBSD.org
Sat Jun 20 19:09:42 UTC 2009


Author: kmacy
Date: Sat Jun 20 19:09:41 2009
New Revision: 194554
URL: http://svn.freebsd.org/changeset/base/194554

Log:
  fix typo in conditional

Modified:
  head/sys/dev/cxgb/cxgb_sge.c

Modified: head/sys/dev/cxgb/cxgb_sge.c
==============================================================================
--- head/sys/dev/cxgb/cxgb_sge.c	Sat Jun 20 18:57:14 2009	(r194553)
+++ head/sys/dev/cxgb/cxgb_sge.c	Sat Jun 20 19:09:41 2009	(r194554)
@@ -711,7 +711,7 @@ refill_fl(adapter_t *sc, struct sge_fl *
 		    cl, q->buf_size, refill_fl_cb, &cb_arg, 0);
 		
 		if (err != 0 || cb_arg.error) {
-			if (q->zone = zone_pack)
+			if (q->zone == zone_pack)
 				uma_zfree(q->zone, cl);
 			m_free(m);
 			goto done;


More information about the svn-src-all mailing list