Module Name: src
Committed By: pgoyette
Date: Wed Aug 11 11:49:09 UTC 2010
Modified Files:
src/sys/opencrypto: crypto.c
Log Message:
Keep condvar wmesg within 8 char limit.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/opencrypto/crypto.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/opencrypto/crypto.c
diff -u src/sys/opencrypto/crypto.c:1.35 src/sys/opencrypto/crypto.c:1.36
--- src/sys/opencrypto/crypto.c:1.35 Mon Aug 2 19:59:35 2010
+++ src/sys/opencrypto/crypto.c Wed Aug 11 11:49:09 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: crypto.c,v 1.35 2010/08/02 19:59:35 jakllsch Exp $ */
+/* $NetBSD: crypto.c,v 1.36 2010/08/11 11:49:09 pgoyette 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.35 2010/08/02 19:59:35 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: crypto.c,v 1.36 2010/08/11 11:49:09 pgoyette Exp $");
#include <sys/param.h>
#include <sys/reboot.h>
@@ -248,7 +248,7 @@
int error;
mutex_init(&crypto_mtx, MUTEX_DEFAULT, IPL_NET);
- cv_init(&cryptoret_cv, "crypto_wait");
+ cv_init(&cryptoret_cv, "crypto_w");
pool_init(&cryptop_pool, sizeof(struct cryptop), 0, 0,
0, "cryptop", NULL, IPL_NET);
pool_init(&cryptodesc_pool, sizeof(struct cryptodesc), 0, 0,