Date: Tue, 13 Jan 2009 21:19:02 +0000 (UTC) From: "George V. Neville-Neil" <gnn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r187193 - in stable/7/sys: . dev/e1000 Message-ID: <200901132119.n0DLJ2Bj016393@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901132119.n0DLJ2Bj016393>