Date: Sat, 27 Mar 2010 15:40:02 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-bugs@FreeBSD.org Subject: Re: kern/145081: commit references a PR Message-ID: <201003271540.o2RFe27P020146@freefall.freebsd.org>
index | next in thread | raw e-mail
The following reply was made to PR kern/145081; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/145081: commit references a PR Date: Sat, 27 Mar 2010 15:39:33 +0000 (UTC) Author: mav Date: Sat Mar 27 15:39:19 2010 New Revision: 205734 URL: http://svn.freebsd.org/changeset/base/205734 Log: Fix lock leakage. PR: kern/145081 Modified: head/sys/dev/sound/pcm/dsp.c Modified: head/sys/dev/sound/pcm/dsp.c ============================================================================== --- head/sys/dev/sound/pcm/dsp.c Sat Mar 27 15:05:06 2010 (r205733) +++ head/sys/dev/sound/pcm/dsp.c Sat Mar 27 15:39:19 2010 (r205734) @@ -1071,6 +1071,7 @@ dsp_ioctl(struct cdev *i_dev, u_long cmd if (IOCGROUP(cmd) == 'M') { if (cmd == OSS_GETVERSION) { *arg_i = SOUND_VERSION; + PCM_GIANT_EXIT(d); return (0); } ret = dsp_ioctl_channel(i_dev, PCM_VOLCH(i_dev), cmd, arg); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003271540.o2RFe27P020146>
