Module Name: src Committed By: pgoyette Date: Wed Aug 11 11:31:45 UTC 2010
Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: Keep condvar wmesg within 8-char limit. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/sys/arch/x86/x86/ipmi.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/arch/x86/x86/ipmi.c diff -u src/sys/arch/x86/x86/ipmi.c:1.49 src/sys/arch/x86/x86/ipmi.c:1.50 --- src/sys/arch/x86/x86/ipmi.c:1.49 Sun Aug 1 15:42:19 2010 +++ src/sys/arch/x86/x86/ipmi.c Wed Aug 11 11:31:45 2010 @@ -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) {