diff options
Diffstat (limited to 'sys/opencrypto')
| -rw-r--r-- | sys/opencrypto/crypto.c | 8 | ||||
| -rw-r--r-- | sys/opencrypto/cryptodev.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/opencrypto/crypto.c b/sys/opencrypto/crypto.c index 2e7bef5ba14..70a395632db 100644 --- a/sys/opencrypto/crypto.c +++ b/sys/opencrypto/crypto.c @@ -1,4 +1,4 @@ -/* $NetBSD: crypto.c,v 1.114 2020/04/08 15:27:18 pgoyette Exp $ */ +/* $NetBSD: crypto.c,v 1.115 2021/08/09 19:57:58 andvar Exp $ */ /* $FreeBSD: src/sys/opencrypto/crypto.c,v 1.4.2.5 2003/02/26 00:14:05 sam Exp $ */ /* $OpenBSD: crypto.c,v 1.41 2002/07/17 23:52:38 art Exp $ */ @@ -53,7 +53,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.114 2020/04/08 15:27:18 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.115 2021/08/09 19:57:58 andvar Exp $"); #include <sys/param.h> #include <sys/reboot.h> @@ -1361,7 +1361,7 @@ out: } /* - * Add an asymetric crypto request to a queue, + * Add an asymmetric crypto request to a queue, * to be processed by the kernel thread. */ int @@ -1429,7 +1429,7 @@ out: } /* - * Dispatch an assymetric crypto request to the appropriate crypto devices. + * Dispatch an asymmetric crypto request to the appropriate crypto devices. */ static int crypto_kinvoke(struct cryptkop *krp, int hint) diff --git a/sys/opencrypto/cryptodev.h b/sys/opencrypto/cryptodev.h index b354390cb62..238b2bfcde4 100644 --- a/sys/opencrypto/cryptodev.h +++ b/sys/opencrypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $NetBSD: cryptodev.h,v 1.40 2019/11/29 07:20:03 hikaru Exp $ */ +/* $NetBSD: cryptodev.h,v 1.41 2021/08/09 19:57:58 andvar Exp $ */ /* $FreeBSD: src/sys/opencrypto/cryptodev.h,v 1.2.2.6 2003/07/02 17:04:50 sam Exp $ */ /* $OpenBSD: cryptodev.h,v 1.33 2002/07/17 23:52:39 art Exp $ */ @@ -324,7 +324,7 @@ struct cryptret { }; -/* Assymetric key operations */ +/* Asymmetric key operations */ #define CRK_ALGORITM_MIN 0 #define CRK_MOD_EXP 0 #define CRK_MOD_EXP_CRT 1 @@ -390,8 +390,8 @@ struct cryptotstat { struct cryptostats { u_int32_t cs_ops; /* symmetric crypto ops submitted */ u_int32_t cs_errs; /* symmetric crypto ops that failed */ - u_int32_t cs_kops; /* asymetric/key ops submitted */ - u_int32_t cs_kerrs; /* asymetric/key ops that failed */ + u_int32_t cs_kops; /* asymmetric/key ops submitted */ + u_int32_t cs_kerrs; /* asymmetric/key ops that failed */ u_int32_t cs_intrs; /* crypto swi thread activations */ u_int32_t cs_rets; /* crypto return thread activations */ u_int32_t cs_blocks; /* symmetric op driver block */ |
