svn commit: r302669 - head/sys/dev/ioat

Conrad E. Meyer cem at FreeBSD.org
Tue Jul 12 17:59:00 UTC 2016


Author: cem
Date: Tue Jul 12 17:58:58 2016
New Revision: 302669
URL: https://svnweb.freebsd.org/changeset/base/302669

Log:
  ioat(4): Shrink using the correct timer
  
  Fix a typo introduced in r302352.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/dev/ioat/ioat.c

Modified: head/sys/dev/ioat/ioat.c
==============================================================================
--- head/sys/dev/ioat/ioat.c	Tue Jul 12 17:38:18 2016	(r302668)
+++ head/sys/dev/ioat/ioat.c	Tue Jul 12 17:58:58 2016	(r302669)
@@ -1704,7 +1704,7 @@ ioat_shrink_timer_callback(void *arg)
 
 out:
 	if (ioat->ring_size_order > IOAT_MIN_ORDER)
-		callout_reset(&ioat->poll_timer, IOAT_SHRINK_PERIOD,
+		callout_reset(&ioat->shrink_timer, IOAT_SHRINK_PERIOD,
 		    ioat_shrink_timer_callback, ioat);
 }
 


More information about the svn-src-all mailing list