No need to optimise for a node with no hooks, my braino.

This commit is contained in:
Gleb Smirnoff 2012-02-13 13:07:56 +00:00
parent 35762f5913
commit dea55037d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=231585

View File

@ -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;