Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Jul 2011 09:43:26 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r223822 - head/sys/netgraph/netflow
Message-ID:  <201107060943.p669hQoI009189@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glebius
Date: Wed Jul  6 09:43:25 2011
New Revision: 223822
URL: http://svn.freebsd.org/changeset/base/223822

Log:
  Add missing unlocks.

Modified:
  head/sys/netgraph/netflow/netflow.c

Modified: head/sys/netgraph/netflow/netflow.c
==============================================================================
--- head/sys/netgraph/netflow/netflow.c	Wed Jul  6 07:13:28 2011	(r223821)
+++ head/sys/netgraph/netflow/netflow.c	Wed Jul  6 09:43:25 2011	(r223822)
@@ -970,6 +970,7 @@ struct ngnf_show_header *resp)
 			if (hsh->mtx.mtx_lock & MTX_CONTESTED) {
 				resp->hash_id = i;
 				resp->list_id = list_id;
+				mtx_unlock(&hsh->mtx);
 				return (0);
 			}
 
@@ -1001,6 +1002,7 @@ struct ngnf_show_header *resp)
 				 * we simply skip to next hash_id.
 				 */
 				resp->list_id = list_id + 1;
+				mtx_unlock(&hsh->mtx);
 				return (0);
 			}
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107060943.p669hQoI009189>