svn commit: r187193 - in stable/7/sys: . dev/e1000

George V. Neville-Neil gnn at FreeBSD.org
Tue Jan 13 13:19:04 PST 2009


Author: gnn
Date: Tue Jan 13 21:19:02 2009
New Revision: 187193
URL: http://svn.freebsd.org/changeset/base/187193

Log:
  MFC of average latency bug fix
  
  Fix a cut/paste bug which prevents us from setting the average
  latency tunable.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/dev/e1000/if_igb.c

Modified: stable/7/sys/dev/e1000/if_igb.c
==============================================================================
--- stable/7/sys/dev/e1000/if_igb.c	Tue Jan 13 21:18:14 2009	(r187192)
+++ stable/7/sys/dev/e1000/if_igb.c	Tue Jan 13 21:19:02 2009	(r187193)
@@ -281,7 +281,7 @@ TUNABLE_INT("hw.igb.enable_aim", &igb_en
 static int igb_low_latency = IGB_LOW_LATENCY;
 TUNABLE_INT("hw.igb.low_latency", &igb_low_latency);
 static int igb_ave_latency = IGB_AVE_LATENCY;
-TUNABLE_INT("hw.igb.ave_latency", &igb_low_latency);
+TUNABLE_INT("hw.igb.ave_latency", &igb_ave_latency);
 static int igb_bulk_latency = IGB_BULK_LATENCY;
 TUNABLE_INT("hw.igb.bulk_latency", &igb_bulk_latency);
                 


More information about the svn-src-stable mailing list