From owner-freebsd-current Sun Mar 25 10: 1:18 2001 Delivered-To: freebsd-current@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 9DFF637B719; Sun, 25 Mar 2001 10:01:12 -0800 (PST) (envelope-from greid@ukug.uk.freebsd.org) Received: from sobek.openirc.co.uk ([62.252.9.76]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010325180110.BMII283.mta03-svc.ntlworld.com@sobek.openirc.co.uk>; Sun, 25 Mar 2001 19:01:10 +0100 Date: Sun, 25 Mar 2001 19:01:08 +0100 (BST) From: George Reid X-Sender: greid@sobek.openirc.co.uk To: Blaz Zupan Cc: freebsd-current@FreeBSD.ORG, cg@FreeBSD.ORG Subject: Re: Kernel hangs with latest sources In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 25 Mar 2001, Blaz Zupan wrote: > My kernel compiled from -current sources as of today morning hangs after > recognizing the sound hardware, the last line display is: > > pcm0: at port > 0x240-0x24f,0xe80-0xe87,0x388-0x38f,0x300-0x301,0x100-0x101 irq 7 drq > 0,1 on isa0 Included patch should fix this problem. greid Index: mss.c =================================================================== RCS file: /usr/home/ncvs/src/sys/dev/sound/isa/mss.c,v retrieving revision 1.65 diff -u -r1.65 mss.c --- mss.c 2001/03/24 23:10:25 1.65 +++ mss.c 2001/03/25 17:55:10 @@ -174,13 +174,13 @@ static void mss_lock(struct mss_info *mss) { - snd_mtxlock(mss); + snd_mtxlock(mss->lock); } static void mss_unlock(struct mss_info *mss) { - snd_mtxunlock(mss); + snd_mtxunlock(mss->lock); } static int To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message