From owner-freebsd-questions@FreeBSD.ORG Sun Dec 31 09:31:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73B4F16A403 for ; Sun, 31 Dec 2006 09:31:30 +0000 (UTC) (envelope-from LukeD@pobox.com) Received: from proof.pobox.com (proof.pobox.com [207.106.133.28]) by mx1.freebsd.org (Postfix) with ESMTP id 35FB613C458 for ; Sun, 31 Dec 2006 09:31:30 +0000 (UTC) (envelope-from LukeD@pobox.com) Received: from proof (localhost [127.0.0.1]) by proof.pobox.com (Postfix) with ESMTP id 4813224C30 for ; Sun, 31 Dec 2006 04:01:36 -0500 (EST) Received: from border.crystalsphere.multiverse (pool-71-112-198-61.sttlwa.dsl-w.verizon.net [71.112.198.61]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by proof.sasl.smtp.pobox.com (Postfix) with ESMTP id BD0CCA3CD6 for ; Sun, 31 Dec 2006 04:01:35 -0500 (EST) Date: Sun, 31 Dec 2006 01:01:09 -0800 (PST) From: Luke Dean X-X-Sender: lukas@border.crystalsphere.multiverse To: freebsd-questions@freebsd.org Message-ID: <20061230224805.U7072@border.crystalsphere.multiverse> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: How to reset /dev/dsp ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Luke Dean List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 09:31:30 -0000 I'm running FreeBSD 6.1. My sound device shows up like this in my dmesg: pcm0: port 0xd800-0xd8ff,0xdc00-0xdc3f mem 0xfc001000-0xfc0011ff,0xfc002000-0xfc0020ff irq 17 at device 31.5 on pci0 pcm0: primary codec not ready! pcm0: My sound driver is compiled into the kernel: device sound device snd_ich I've got a java application that I run through diablo-jdk-1.5.0.07.01_1 that uses sound. It's a game. Partway through the game, the sound stops working. The people who make the game have been aware of the problem for many months, but don't understand what to do about it. Okay, I can accept that. What I can't accept is that this java application breaks the sound in such a way that NOTHING can play sound anymore until I reboot the machine! If I attempt to play a movie with mplayer after the game has broken the sound, it says: [AO OSS] audio_setup: Can't open audio device /dev/dsp: No such file or directory However, the dsp device still exists in /dev: [0:/dev> ll dsp* crw-rw-rw- 1 root wheel - 0, 51 Dec 29 21:36 dsp0.0 crw-rw-rw- 1 root wheel - 0, 54 Dec 29 21:37 dsp0.1 crw-rw-rw- 1 root wheel - 0, 52 Dec 29 19:24 dspW0.0 crw-rw-rw- 1 root wheel - 0, 55 Dec 29 19:24 dspW0.1 crw-rw-rw- 1 root wheel - 0, 57 Dec 29 19:24 dspr0.1 The sndstat device doesn't show any problem, if I'm reading the output right: [0:/dev> cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xfc001000, 0xfc002000 irq 17 bufsz 16384 (1p/1r/0v channels duplex default) Is there anything I can do short of rebooting the machine to get my sound working when this happens? I thought maybe there was something I could do with devd or devctl to reset the device, but I can't figure out how to do that. I'm not even sure how to "see" the problem except to attempt to play a sound.