From owner-cvs-src-old@FreeBSD.ORG Thu Dec 30 02:18:28 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A632910657C4 for ; Thu, 30 Dec 2010 02:18:28 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 950418FC1D for ; Thu, 30 Dec 2010 02:18:28 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oBU2ISLo017241 for ; Thu, 30 Dec 2010 02:18:28 GMT (envelope-from scf@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oBU2ISWd017240 for cvs-src-old@freebsd.org; Thu, 30 Dec 2010 02:18:28 GMT (envelope-from scf@repoman.freebsd.org) Message-Id: <201012300218.oBU2ISWd017240@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to scf@repoman.freebsd.org using -f From: Sean Farley Date: Thu, 30 Dec 2010 02:18:04 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_ioctl.c linux_ioctl.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Dec 2010 02:18:28 -0000 scf 2010-12-30 02:18:04 UTC FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.c linux_ioctl.h Log: SVN rev 216813 on 2010-12-30 02:18:04Z by scf Fix the LINUX_SOUND_MIXER_INFO ioctl to return success after the information is set to FreeBSD. It had been falling through to the end of linux_ioctl_sound() and returning ENOIOCTL. Noticed when running the Linux ALSA amixer tool. Add a LINUX_SOUND_MIXER_READ_CAPS ioctl which is used by the Skype v2.1.0.81 binary. Reviewed by: gavin MFC after: 2 weeks Revision Changes Path 1.167 +6 -2 src/sys/compat/linux/linux_ioctl.c 1.32 +1 -0 src/sys/compat/linux/linux_ioctl.h