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); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"