From owner-cvs-src@FreeBSD.ORG Sun Jun 18 14:14:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B57716A484; Sun, 18 Jun 2006 14:14:42 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5284543D53; Sun, 18 Jun 2006 14:14:42 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5IEEgOY019440; Sun, 18 Jun 2006 14:14:42 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5IEEgW1019439; Sun, 18 Jun 2006 14:14:42 GMT (envelope-from netchild) Message-Id: <200606181414.k5IEEgW1019439@repoman.freebsd.org> From: Alexander Leidinger Date: Sun, 18 Jun 2006 14:14:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/midi midi.c sequencer.c src/sys/dev/sound/pci cmi.c es137x.c ich.c maestro.c via8233.c src/sys/dev/sound/pcm feeder_rate.c sound.c vchan.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:14:42 -0000 netchild 2006-06-18 14:14:41 UTC FreeBSD src repository Modified files: sys/dev/sound/midi midi.c sequencer.c sys/dev/sound/pci cmi.c es137x.c ich.c maestro.c via8233.c sys/dev/sound/pcm feeder_rate.c sound.c vchan.c Log: - Rename hw.snd.unit to hw.snd.default_unit to make the purpose more obvious. - Enable 4 automatic vchan's by default. - Add some comments which provide ides/questions for improvement. - Prefix some temporary sysctl's with an underscore to denote that it is not an official API but a workaround until the real solution is implemented. Revision Changes Path 1.19 +1 -0 src/sys/dev/sound/midi/midi.c 1.20 +1 -0 src/sys/dev/sound/midi/sequencer.c 1.36 +6 -1 src/sys/dev/sound/pci/cmi.c 1.60 +21 -3 src/sys/dev/sound/pci/es137x.c 1.66 +3 -0 src/sys/dev/sound/pci/ich.c 1.32 +3 -0 src/sys/dev/sound/pci/maestro.c 1.25 +6 -2 src/sys/dev/sound/pci/via8233.c 1.18 +3 -1 src/sys/dev/sound/pcm/feeder_rate.c 1.104 +12 -6 src/sys/dev/sound/pcm/sound.c 1.25 +5 -2 src/sys/dev/sound/pcm/vchan.c