svn commit: r283858 - head/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Mon Jun 1 00:55:16 UTC 2015


Author: np
Date: Mon Jun  1 00:55:15 2015
New Revision: 283858
URL: https://svnweb.freebsd.org/changeset/base/283858

Log:
  cxgbe: set minimum burst size when fetching freelist buffers to 128B.
  
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/t4_sge.c

Modified: head/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- head/sys/dev/cxgbe/t4_sge.c	Mon Jun  1 00:09:21 2015	(r283857)
+++ head/sys/dev/cxgbe/t4_sge.c	Mon Jun  1 00:55:15 2015	(r283858)
@@ -2665,7 +2665,7 @@ alloc_iq_fl(struct port_info *pi, struct
 				    F_FW_IQ_CMD_FL0CONGEN);
 		}
 		c.fl0dcaen_to_fl0cidxfthresh =
-		    htobe16(V_FW_IQ_CMD_FL0FBMIN(X_FETCHBURSTMIN_64B) |
+		    htobe16(V_FW_IQ_CMD_FL0FBMIN(X_FETCHBURSTMIN_128B) |
 			V_FW_IQ_CMD_FL0FBMAX(X_FETCHBURSTMAX_512B));
 		c.fl0size = htobe16(fl->qsize);
 		c.fl0addr = htobe64(fl->ba);


More information about the svn-src-head mailing list