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

Kip Macy kmacy at FreeBSD.org
Sun Jun 21 01:17:39 UTC 2009


Author: kmacy
Date: Sun Jun 21 01:17:38 2009
New Revision: 194563
URL: http://svn.freebsd.org/changeset/base/194563

Log:
  fix !x86 cxgb compile

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

Modified: head/sys/dev/cxgb/sys/uipc_mvec.c
==============================================================================
--- head/sys/dev/cxgb/sys/uipc_mvec.c	Sun Jun 21 00:21:33 2009	(r194562)
+++ head/sys/dev/cxgb/sys/uipc_mvec.c	Sun Jun 21 01:17:38 2009	(r194563)
@@ -90,7 +90,7 @@ retry:
 		n = n->m_next;
 	}
 #else
-	err = bus_dmamap_load_mbuf_sg(txq->entry_tag, map, m, segs,
+	err = bus_dmamap_load_mbuf_sg(txq->entry_tag, map, *m, segs,
 		    &seg_count, 0);
 #endif	
 	if (seg_count == 0) {


More information about the svn-src-head mailing list