Date: Thu, 22 Feb 2018 05:43:45 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329813 - head/sys/cam Message-ID: <201802220543.w1M5hjeh068854@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802220543.w1M5hjeh068854>