diff options
Diffstat (limited to 'sys/netgraph/netflow/ng_netflow.c')
-rw-r--r-- | sys/netgraph/netflow/ng_netflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/netflow/ng_netflow.c b/sys/netgraph/netflow/ng_netflow.c index c67d90b..c813e50 100644 --- a/sys/netgraph/netflow/ng_netflow.c +++ b/sys/netgraph/netflow/ng_netflow.c @@ -184,7 +184,7 @@ ng_netflow_constructor(node_p node) priv->info.nfinfo_act_t = ACTIVE_TIMEOUT; /* Initialize callout handle */ - callout_init(&priv->exp_callout, 1); + callout_init(&priv->exp_callout, CALLOUT_MPSAFE); /* Allocate memory and set up flow cache */ if ((error = ng_netflow_cache_init(priv))) |