Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x86/x86 Keep condvar wmesg within 8-char limit.



details:   https://anonhg.NetBSD.org/src/rev/cf0f831f3df1
branches:  trunk
changeset: 757027:cf0f831f3df1
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Aug 11 11:31:45 2010 +0000

description:
Keep condvar wmesg within 8-char limit.

diffstat:

 sys/arch/x86/x86/ipmi.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r f7c73a8eccc1 -r cf0f831f3df1 sys/arch/x86/x86/ipmi.c
--- a/sys/arch/x86/x86/ipmi.c   Wed Aug 11 11:06:42 2010 +0000
+++ b/sys/arch/x86/x86/ipmi.c   Wed Aug 11 11:31:45 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ipmi.c,v 1.49 2010/08/01 15:42:19 mlelstv Exp $ */
+/*     $NetBSD: ipmi.c,v 1.50 2010/08/11 11:31:45 pgoyette Exp $ */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -52,7 +52,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ipmi.c,v 1.49 2010/08/01 15:42:19 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ipmi.c,v 1.50 2010/08/11 11:31:45 pgoyette Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -1976,7 +1976,7 @@
        sc.sc_if->probe(&sc);
 
        mutex_init(&sc.sc_cmd_mtx, MUTEX_DEFAULT, IPL_SOFTCLOCK);
-       cv_init(&sc.sc_cmd_sleep, "ipmimatch");
+       cv_init(&sc.sc_cmd_sleep, "ipmimtch");
        mutex_enter(&sc.sc_cmd_mtx);
        /* Identify BMC device early to detect lying bios */
        if (ipmi_sendcmd(&sc, BMC_SA, 0, APP_NETFN, APP_GET_DEVICE_ID,
@@ -2133,7 +2133,7 @@
        cv_init(&sc->sc_cmd_sleep, "ipmicmd");
 
        mutex_init(&sc->sc_poll_mtx, MUTEX_DEFAULT, IPL_SOFTCLOCK);
-       cv_init(&sc->sc_poll_cv, "ipmi_poll");
+       cv_init(&sc->sc_poll_cv, "ipmipoll");
 
        if (kthread_create(PRI_NONE, 0, NULL, ipmi_thread, self,
            &sc->sc_kthread, "ipmi") != 0) {



Home | Main Index | Thread Index | Old Index