git: 4e057806cf56 - main - crypto: Cleanup mtx_init() calls.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 02 Nov 2021 19:18:31 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=4e057806cf56b238a0a3ef7af140f447d7b67ab5
commit 4e057806cf56b238a0a3ef7af140f447d7b67ab5
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-11-02 18:27:20 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2021-11-02 19:18:05 +0000
crypto: Cleanup mtx_init() calls.
Don't pass the same name to multiple mutexes while using unique types
for WITNESS. Just use the unique types as the mutex names.
Reviewed by: markj
MFC after: 1 week
Sponsored by: Chelsio Communications
Differential Revision: https://reviews.freebsd.org/D32740
---
sys/opencrypto/crypto.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys/opencrypto/crypto.c b/sys/opencrypto/crypto.c
index 436444869e90..8c5457a48f65 100644
--- a/sys/opencrypto/crypto.c
+++ b/sys/opencrypto/crypto.c
@@ -299,11 +299,10 @@ crypto_init(void)
struct proc *p;
int error;
- mtx_init(&crypto_drivers_mtx, "crypto", "crypto driver table",
- MTX_DEF|MTX_QUIET);
+ mtx_init(&crypto_drivers_mtx, "crypto driver table", NULL, MTX_DEF);
TAILQ_INIT(&crp_q);
- mtx_init(&crypto_q_mtx, "crypto", "crypto op queues", MTX_DEF);
+ mtx_init(&crypto_q_mtx, "crypto op queues", NULL, MTX_DEF);
cryptop_zone = uma_zcreate("cryptop",
sizeof(struct cryptop), NULL, NULL, NULL, NULL,
@@ -341,7 +340,8 @@ crypto_init(void)
ret_worker->reorder_ops = 0;
ret_worker->reorder_cur_seq = 0;
- mtx_init(&ret_worker->crypto_ret_mtx, "crypto", "crypto return queues", MTX_DEF);
+ mtx_init(&ret_worker->crypto_ret_mtx, "crypto return queues",
+ NULL, MTX_DEF);
error = kthread_add(crypto_ret_thread, ret_worker, p,
&ret_worker->td, 0, 0, "crypto returns %td",