Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Jan 2009 00:10:50 +0000 (UTC)
From:      "George V. Neville-Neil" <gnn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r187123 - head/sys/dev/e1000
Message-ID:  <200901130010.n0D0Ao9d080222@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gnn
Date: Tue Jan 13 00:10:50 2009
New Revision: 187123
URL: http://svn.freebsd.org/changeset/base/187123

Log:
  Fix a cut/paste bug which prevents us from setting the average
  latency tunable.
  
  Reviewed by:	jfv
  MFC after:	1 day

Modified:
  head/sys/dev/e1000/if_igb.c

Modified: head/sys/dev/e1000/if_igb.c
==============================================================================
--- head/sys/dev/e1000/if_igb.c	Mon Jan 12 23:17:12 2009	(r187122)
+++ head/sys/dev/e1000/if_igb.c	Tue Jan 13 00:10:50 2009	(r187123)
@@ -279,7 +279,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);
                 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901130010.n0D0Ao9d080222>