Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/crypto Upgrade self-test passed messages from verbose to...
details: https://anonhg.NetBSD.org/src/rev/c0f15fb0d9f6
branches: trunk
changeset: 989866:c0f15fb0d9f6
user: jmcneill <jmcneill%NetBSD.org@localhost>
date: Sun Oct 17 14:45:45 2021 +0000
description:
Upgrade self-test passed messages from verbose to debug.
diffstat:
sys/crypto/adiantum/adiantum.c | 6 +++---
sys/crypto/aes/aes_ccm.c | 6 +++---
sys/crypto/blake2/blake2s.c | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diffs (81 lines):
diff -r 1ba0d2120afb -r c0f15fb0d9f6 sys/crypto/adiantum/adiantum.c
--- a/sys/crypto/adiantum/adiantum.c Sun Oct 17 14:42:15 2021 +0000
+++ b/sys/crypto/adiantum/adiantum.c Sun Oct 17 14:45:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: adiantum.c,v 1.6 2021/04/14 21:29:57 christos Exp $ */
+/* $NetBSD: adiantum.c,v 1.7 2021/10/17 14:45:45 jmcneill Exp $ */
/*-
* Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: adiantum.c,v 1.6 2021/04/14 21:29:57 christos Exp $");
+__KERNEL_RCSID(1, "$NetBSD: adiantum.c,v 1.7 2021/10/17 14:45:45 jmcneill Exp $");
#include <sys/types.h>
#include <sys/endian.h>
@@ -1938,7 +1938,7 @@
result |= adiantum_selftest();
if (result)
panic("adiantum self-test failed");
- aprint_verbose("adiantum: self-test passed\n");
+ aprint_debug("adiantum: self-test passed\n");
return 0;
}
case MODULE_CMD_FINI:
diff -r 1ba0d2120afb -r c0f15fb0d9f6 sys/crypto/aes/aes_ccm.c
--- a/sys/crypto/aes/aes_ccm.c Sun Oct 17 14:42:15 2021 +0000
+++ b/sys/crypto/aes/aes_ccm.c Sun Oct 17 14:45:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: aes_ccm.c,v 1.5 2020/08/10 06:27:29 rin Exp $ */
+/* $NetBSD: aes_ccm.c,v 1.6 2021/10/17 14:45:45 jmcneill Exp $ */
/*-
* Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: aes_ccm.c,v 1.5 2020/08/10 06:27:29 rin Exp $");
+__KERNEL_RCSID(1, "$NetBSD: aes_ccm.c,v 1.6 2021/10/17 14:45:45 jmcneill Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -611,7 +611,7 @@
case MODULE_CMD_INIT:
if (aes_ccm_selftest())
return EIO;
- aprint_verbose("aes_ccm: self-test passed\n");
+ aprint_debug("aes_ccm: self-test passed\n");
return 0;
case MODULE_CMD_FINI:
return 0;
diff -r 1ba0d2120afb -r c0f15fb0d9f6 sys/crypto/blake2/blake2s.c
--- a/sys/crypto/blake2/blake2s.c Sun Oct 17 14:42:15 2021 +0000
+++ b/sys/crypto/blake2/blake2s.c Sun Oct 17 14:45:45 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: blake2s.c,v 1.1 2020/08/20 21:21:05 riastradh Exp $ */
+/* $NetBSD: blake2s.c,v 1.2 2021/10/17 14:45:45 jmcneill Exp $ */
/*-
* Copyright (c) 2015 Taylor R. Campbell
@@ -29,7 +29,7 @@
#ifdef _KERNEL
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: blake2s.c,v 1.1 2020/08/20 21:21:05 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: blake2s.c,v 1.2 2021/10/17 14:45:45 jmcneill Exp $");
#include <sys/types.h>
#include <sys/module.h>
@@ -338,7 +338,7 @@
case MODULE_CMD_INIT:
if (blake2s_selftest())
panic("blake2s: self-test failed");
- aprint_verbose("blake2s: self-test passed\n");
+ aprint_debug("blake2s: self-test passed\n");
return 0;
case MODULE_CMD_FINI:
return 0;
Home |
Main Index |
Thread Index |
Old Index