git: 60fb9e10c74c - main - cam: enable kern.cam.da.enable_uma_ccbs by default
Edward Tomasz Napierala
trasz at FreeBSD.org
Sun Aug 1 09:51:36 UTC 2021
The branch main has been updated by trasz:
URL: https://cgit.FreeBSD.org/src/commit/?id=60fb9e10c74cfca8656181dd238fcf966bc3f5c8
commit 60fb9e10c74cfca8656181dd238fcf966bc3f5c8
Author: Edward Tomasz Napierala <trasz at FreeBSD.org>
AuthorDate: 2021-08-01 09:40:38 +0000
Commit: Edward Tomasz Napierala <trasz at FreeBSD.org>
CommitDate: 2021-08-01 09:40:42 +0000
cam: enable kern.cam.da.enable_uma_ccbs by default
This makes the da(4) driver use UMA for its CCBs by default,
like ada(4) already does. Please let me know via email
if you notice any suspicious kernel messages,
Reviewed By: imp
Sponsored by: NetApp, Inc.
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D31257
---
sys/cam/scsi/scsi_da.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index ad4c2611333a..676bf33d0bf8 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -1558,7 +1558,7 @@ static sbintime_t da_default_softtimeout = DA_DEFAULT_SOFTTIMEOUT;
static int da_send_ordered = DA_DEFAULT_SEND_ORDERED;
static int da_disable_wp_detection = 0;
static int da_enable_biospeedup = 1;
-static int da_enable_uma_ccbs = 0;
+static int da_enable_uma_ccbs = 1;
static SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
"CAM Direct Access Disk driver");
More information about the dev-commits-src-all
mailing list