From ef75f3885b65f844ecc4210be8f5caac01b82326 Mon Sep 17 00:00:00 2001 From: cem Date: Sat, 4 Jun 2016 04:14:06 +0000 Subject: ioat(4): Always log capabilities on attach Different, relatively recent Intel Xeon hardware support radically different features. E.g., BDX support CRC32 while BDX-DE does not. Reviewed by: rpokala (spiritually) Sponsored by: EMC / Isilon Storage Division --- sys/dev/ioat/ioat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ioat/ioat.c b/sys/dev/ioat/ioat.c index cd9e894..abdfe61 100644 --- a/sys/dev/ioat/ioat.c +++ b/sys/dev/ioat/ioat.c @@ -407,7 +407,7 @@ ioat3_attach(device_t device) ioat = DEVICE2SOFTC(device); ioat->capabilities = ioat_read_dmacapability(ioat); - ioat_log_message(1, "Capabilities: %b\n", (int)ioat->capabilities, + ioat_log_message(0, "Capabilities: %b\n", (int)ioat->capabilities, IOAT_DMACAP_STR); xfercap = ioat_read_xfercap(ioat); -- cgit v1.1