From 267b42a43bcc8d85b017b2fb402c25af07ba0212 Mon Sep 17 00:00:00 2001 From: kris Date: Wed, 16 Apr 2008 16:47:14 +0000 Subject: Replace callout_init(..., 1) with callout_init(..., CALLOUT_MPSAFE) for better grep-compliance and to standardize with the rest of the kernel. Reviewed by: jhb MFC after: 1 week --- sys/netgraph/netflow/ng_netflow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netgraph/netflow/ng_netflow.c') 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))) -- cgit v1.1