From 01869797b78ed21b3ee1d1932e6a1231e23676a9 Mon Sep 17 00:00:00 2001 From: Navdeep Parhar Date: Wed, 27 Feb 2019 06:50:24 +0000 Subject: [PATCH] libcxgb4: Don't spam stderr. Write combining is not enabled by default by the FreeBSD driver. --- contrib/ofed/libcxgb4/dev.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/ofed/libcxgb4/dev.c b/contrib/ofed/libcxgb4/dev.c index 1e48478f7466..89494f9b46d7 100644 --- a/contrib/ofed/libcxgb4/dev.c +++ b/contrib/ofed/libcxgb4/dev.c @@ -202,8 +202,6 @@ static struct ibv_context *c4iw_alloc_context(struct ibv_device *ibdev, * 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; } }