ng_netflow_cache_init() can be void.

This commit is contained in:
Gleb Smirnoff 2011-04-18 09:14:23 +00:00
parent 674d86bf91
commit b6770143c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220769
3 changed files with 4 additions and 7 deletions

View File

@ -503,7 +503,7 @@ hash6_insert(priv_p priv, struct flow6_hash_entry *hsh6, struct flow6_rec *r,
*/
/* Allocate memory and set up flow cache */
int
void
ng_netflow_cache_init(priv_p priv)
{
struct flow_hash_entry *hsh;
@ -546,8 +546,6 @@ ng_netflow_cache_init(priv_p priv)
ng_netflow_v9_cache_init(priv);
CTR0(KTR_NET, "ng_netflow startup()");
return (0);
}
/* Initialize new FIB table for v5 and v9 */

View File

@ -220,7 +220,7 @@ static int
ng_netflow_constructor(node_p node)
{
priv_p priv;
int error = 0, i;
int i;
/* Initialize private data */
priv = malloc(sizeof(*priv), M_NETGRAPH, M_WAITOK | M_ZERO);
@ -241,8 +241,7 @@ ng_netflow_constructor(node_p node)
callout_init(&priv->exp_callout, CALLOUT_MPSAFE);
/* Allocate memory and set up flow cache */
if ((error = ng_netflow_cache_init(priv)))
return (error);
ng_netflow_cache_init(priv);
return (0);
}

View File

@ -458,7 +458,7 @@ struct flow6_hash_entry {
((t) << 3)) /* 8 */
/* Prototypes for netflow.c */
int ng_netflow_cache_init(priv_p);
void ng_netflow_cache_init(priv_p);
void ng_netflow_cache_flush(priv_p);
int ng_netflow_fib_init(priv_p priv, int fib);
void ng_netflow_copyinfo(priv_p, struct ng_netflow_info *);