From: dlg Date: Tue, 12 Aug 2014 01:31:43 +0000 (+0000) Subject: sigh. when returning ENOENT in the sysctl path, unlock on the way out. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=50c0ea53d8ce55a08a9c60ec96cac3d00e3af0a8;p=openbsd sigh. when returning ENOENT in the sysctl path, unlock on the way out. --- diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c index e3fb051fbda..567f5815813 100644 --- a/sys/kern/subr_pool.c +++ b/sys/kern/subr_pool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_pool.c,v 1.144 2014/08/12 01:25:21 dlg Exp $ */ +/* $OpenBSD: subr_pool.c,v 1.145 2014/08/12 01:31:43 dlg Exp $ */ /* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */ /*- @@ -1485,9 +1485,9 @@ sysctl_dopool(int *name, u_int namelen, char *oldp, size_t *oldlenp) rv = sysctl_rdstruct(oldp, oldlenp, NULL, &pi, sizeof(pi)); } +done: splx(s); -done: return (rv); }