PERFORCE change 128990 for review

Steve Wise swise at FreeBSD.org
Mon Nov 12 12:38:01 PST 2007


http://perforce.freebsd.org/chv.cgi?CH=128990

Change 128990 by swise at swise:vic10:iwarp on 2007/11/12 20:37:28

	Added buf_ring_free.

Affected files ...

.. //depot/projects/iwarp/sys/dev/cxgb/sys/cxgb_support.c#3 edit

Differences ...

==== //depot/projects/iwarp/sys/dev/cxgb/sys/cxgb_support.c#3 (text+ko) ====

@@ -322,3 +322,10 @@
 
 	return (br);
 }
+
+void
+buf_ring_free(struct buf_ring *br)
+{
+	free(br->br_ring, M_DEVBUF);
+	free(br, M_DEVBUF);
+}


More information about the p4-projects mailing list