From owner-p4-projects Wed Jul 31 6:52:39 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2E7E837B401; Wed, 31 Jul 2002 06:52:34 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7D1937B400 for ; Wed, 31 Jul 2002 06:52:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93E5643E31 for ; Wed, 31 Jul 2002 06:52:33 -0700 (PDT) (envelope-from jhb@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6VDqXJU051435 for ; Wed, 31 Jul 2002 06:52:33 -0700 (PDT) (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6VDqXOW051432 for perforce@freebsd.org; Wed, 31 Jul 2002 06:52:33 -0700 (PDT) Date: Wed, 31 Jul 2002 06:52:33 -0700 (PDT) Message-Id: <200207311352.g6VDqXOW051432@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin Subject: PERFORCE change 15299 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15299 Change 15299 by jhb@jhb_zion on 2002/07/31 06:51:40 Compiling is good. Affected files ... .. //depot/projects/smpng/sys/kern/kern_mutex.c#42 edit Differences ... ==== //depot/projects/smpng/sys/kern/kern_mutex.c#42 (text+ko) ==== @@ -317,8 +317,8 @@ MPASS(curthread != NULL); KASSERT(m->mtx_object->lo_class == &lock_class_mtx_sleep, - "mtx_lock() of spin mutex %s @ %s:%d", m->mtx_object->lo_name, - file, line); + ("mtx_lock() of spin mutex %s @ %s:%d", m->mtx_object->lo_name, + file, line)); _get_sleep_lock(m, curthread, opts, file, line); LOCK_LOG_LOCK("LOCK", &m->mtx_object, opts, m->mtx_recurse, file, line); @@ -340,8 +340,8 @@ MPASS(curthread != NULL); KASSERT(m->mtx_object->lo_class == &lock_class_mtx_sleep, - "mtx_unlock() of spin mutex %s @ %s:%d", m->mtx_object->lo_name, - file, line); + ("mtx_unlock() of spin mutex %s @ %s:%d", m->mtx_object->lo_name, + file, line)); WITNESS_UNLOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line); LOCK_LOG_LOCK("UNLOCK", &m->mtx_object, opts, m->mtx_recurse, file, line); @@ -410,8 +410,8 @@ MPASS(curthread != NULL); KASSERT(m->mtx_object->lo_class == &lock_class_mtx_sleep, - "mtx_lock_spin() of sleep mutex %s @ %s:%d", m->mtx_object->lo_name, - file, line); + ("mtx_lock_spin() of sleep mutex %s @ %s:%d", + m->mtx_object->lo_name, file, line)); #if defined(SMP) || LOCK_DEBUG > 0 _get_spin_lock(m, curthread, opts, file, line); #else @@ -428,8 +428,8 @@ MPASS(curthread != NULL); KASSERT(m->mtx_object->lo_class == &lock_class_mtx_sleep, - "mtx_unlock_spin() of sleep mutex %s @ %s:%d", - m->mtx_object->lo_name, file, line); + ("mtx_unlock_spin() of sleep mutex %s @ %s:%d", + m->mtx_object->lo_name, file, line)); WITNESS_UNLOCK(&m->mtx_object, opts | LOP_EXCLUSIVE, file, line); LOCK_LOG_LOCK("UNLOCK", &m->mtx_object, opts, m->mtx_recurse, file, line); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message