summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcem <cem@FreeBSD.org>2016-06-04 04:14:06 +0000
committercem <cem@FreeBSD.org>2016-06-04 04:14:06 +0000
commitef75f3885b65f844ecc4210be8f5caac01b82326 (patch)
tree72ef8331a6e29820ff28611a88a7ee65b2564565
parent66bd341405b45348b80045e28743cd292a272b74 (diff)
downloadFreeBSD-src-ef75f3885b65f844ecc4210be8f5caac01b82326.zip
FreeBSD-src-ef75f3885b65f844ecc4210be8f5caac01b82326.tar.gz
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
-rw-r--r--sys/dev/ioat/ioat.c2
1 files changed, 1 insertions, 1 deletions
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);
OpenPOWER on IntegriCloud