svn commit: r344617 - head/contrib/ofed/libcxgb4

Navdeep Parhar np at FreeBSD.org
Wed Feb 27 06:50:25 UTC 2019


Author: np
Date: Wed Feb 27 06:50:24 2019
New Revision: 344617
URL: https://svnweb.freebsd.org/changeset/base/344617

Log:
  libcxgb4: Don't spam stderr.  Write combining is not enabled by default
  by the FreeBSD driver.

Modified:
  head/contrib/ofed/libcxgb4/dev.c

Modified: head/contrib/ofed/libcxgb4/dev.c
==============================================================================
--- head/contrib/ofed/libcxgb4/dev.c	Wed Feb 27 04:58:18 2019	(r344616)
+++ head/contrib/ofed/libcxgb4/dev.c	Wed Feb 27 06:50:24 2019	(r344617)
@@ -202,8 +202,6 @@ static struct ibv_context *c4iw_alloc_context(struct i
 		 * loader tunable "hw.cxl.write_combine=0"
 		 */
 		if (t5_en_wc && !context->status_page->wc_supported) {
-			fprintf(stderr, "iw_cxgb4 driver doesn't support Write "
-				"Combine, so regular DB writes will be used\n");
 			t5_en_wc = 0;
 		}
 	}


More information about the svn-src-all mailing list