Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/opencrypto Keep condvar wmesg within 8 char limit.



details:   https://anonhg.NetBSD.org/src/rev/7a87d5cd0a64
branches:  trunk
changeset: 757034:7a87d5cd0a64
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Aug 11 11:49:09 2010 +0000

description:
Keep condvar wmesg within 8 char limit.

diffstat:

 sys/opencrypto/crypto.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r bdc503724457 -r 7a87d5cd0a64 sys/opencrypto/crypto.c
--- a/sys/opencrypto/crypto.c   Wed Aug 11 11:48:21 2010 +0000
+++ b/sys/opencrypto/crypto.c   Wed Aug 11 11:49:09 2010 +0000
@@ -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,



Home | Main Index | Thread Index | Old Index