svn commit: r329813 - head/sys/cam

Warner Losh imp at FreeBSD.org
Thu Feb 22 05:43:46 UTC 2018


Author: imp
Date: Thu Feb 22 05:43:45 2018
New Revision: 329813
URL: https://svnweb.freebsd.org/changeset/base/329813

Log:
  Wrap an extra long line
  
  This debugging line is too big for even my largest xterm. wrap it at
  about 80 columns.
  
  Sponsored by: Netflix

Modified:
  head/sys/cam/cam_iosched.c

Modified: head/sys/cam/cam_iosched.c
==============================================================================
--- head/sys/cam/cam_iosched.c	Thu Feb 22 05:43:20 2018	(r329812)
+++ head/sys/cam/cam_iosched.c	Thu Feb 22 05:43:45 2018	(r329813)
@@ -1219,7 +1219,11 @@ cam_iosched_get_write(struct cam_iosched_softc *isc)
 	 */
 	if (bioq_first(&isc->bio_queue) && isc->current_read_bias) {
 		if (iosched_debug)
-			printf("Reads present and current_read_bias is %d queued writes %d queued reads %d\n", isc->current_read_bias, isc->write_stats.queued, isc->read_stats.queued);
+			printf(
+			    "Reads present and current_read_bias is %d queued "
+			    "writes %d queued reads %d\n",
+			    isc->current_read_bias, isc->write_stats.queued,
+    			    isc->read_stats.queued);
 		isc->current_read_bias--;
 		/* We're not limiting writes, per se, just doing reads first */
 		return NULL;


More information about the svn-src-head mailing list