Module Name:    src
Committed By:   jmcneill
Date:           Sat Nov  5 17:36:33 UTC 2022

Modified Files:
        src/sys/crypto/aes: aes_impl.c
        src/sys/crypto/chacha: chacha_impl.c

Log Message:
Make aes and chacha prints debug only.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/crypto/aes/aes_impl.c
cvs rdiff -u -r1.3 -r1.4 src/sys/crypto/chacha/chacha_impl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/crypto/aes/aes_impl.c
diff -u src/sys/crypto/aes/aes_impl.c:1.9 src/sys/crypto/aes/aes_impl.c:1.10
--- src/sys/crypto/aes/aes_impl.c:1.9	Mon Jul 27 20:45:15 2020
+++ src/sys/crypto/aes/aes_impl.c	Sat Nov  5 17:36:33 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: aes_impl.c,v 1.9 2020/07/27 20:45:15 riastradh Exp $	*/
+/*	$NetBSD: aes_impl.c,v 1.10 2022/11/05 17:36:33 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: aes_impl.c,v 1.9 2020/07/27 20:45:15 riastradh Exp $");
+__KERNEL_RCSID(1, "$NetBSD: aes_impl.c,v 1.10 2022/11/05 17:36:33 jmcneill Exp $");
 
 #include <sys/types.h>
 #include <sys/kernel.h>
@@ -121,7 +121,7 @@ aes_select(void)
 	if (aes_impl == NULL)
 		panic("AES self-tests failed");
 
-	aprint_verbose("aes: %s\n", aes_impl->ai_name);
+	aprint_debug("aes: %s\n", aes_impl->ai_name);
 	return 0;
 }
 

Index: src/sys/crypto/chacha/chacha_impl.c
diff -u src/sys/crypto/chacha/chacha_impl.c:1.3 src/sys/crypto/chacha/chacha_impl.c:1.4
--- src/sys/crypto/chacha/chacha_impl.c:1.3	Mon Jul 27 20:49:10 2020
+++ src/sys/crypto/chacha/chacha_impl.c	Sat Nov  5 17:36:33 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: chacha_impl.c,v 1.3 2020/07/27 20:49:10 riastradh Exp $	*/
+/*	$NetBSD: chacha_impl.c,v 1.4 2022/11/05 17:36:33 jmcneill Exp $	*/
 
 /*-
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -84,7 +84,7 @@ chacha_select(void)
 			chacha_impl = chacha_md_impl;
 	}
 
-	aprint_verbose("chacha: %s\n", chacha_impl->ci_name);
+	aprint_debug("chacha: %s\n", chacha_impl->ci_name);
 	return 0;
 }
 

Reply via email to