From 01913307cadcc6347df3e467eddbb8dd7d777db7 Mon Sep 17 00:00:00 2001 From: glebius Date: Mon, 13 Feb 2012 13:07:56 +0000 Subject: No need to optimise for a node with no hooks, my braino. --- sys/netgraph/ng_socket.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'sys/netgraph') diff --git a/sys/netgraph/ng_socket.c b/sys/netgraph/ng_socket.c index f997d49..c9d9346 100644 --- a/sys/netgraph/ng_socket.c +++ b/sys/netgraph/ng_socket.c @@ -850,12 +850,9 @@ ngs_findhook(node_p node, const char *name) uint32_t h; /* - * Microoptimisations for a ng_socket with no - * hooks, or with a single hook, which is a - * common case. + * Microoptimisation for an ng_socket with + * a single hook, which is a common case. */ - if (node->nd_numhooks == 0) - return (NULL); if (node->nd_numhooks == 1) { hook_p hook; -- cgit v1.1