summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_dummynet.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2007-07-28 07:31:30 +0000
committerrwatson <rwatson@FreeBSD.org>2007-07-28 07:31:30 +0000
commita62dbe240a72505ede1aa44338d48387b1f57dff (patch)
tree53267e076ee890eac40b73468ae3007d9979e4d7 /sys/netinet/ip_dummynet.c
parentdff1b6c68a8d4d1fc50a981e37d4dbf87b06a37a (diff)
downloadFreeBSD-src-a62dbe240a72505ede1aa44338d48387b1f57dff.zip
FreeBSD-src-a62dbe240a72505ede1aa44338d48387b1f57dff.tar.gz
Replace references to NET_CALLOUT_MPSAFE with CALLOUT_MPSAFE, and remove
definition of NET_CALLOUT_MPSAFE, which is no longer required now that debug.mpsafenet has been removed. The once over: bz Approved by: re (kensmith)
Diffstat (limited to 'sys/netinet/ip_dummynet.c')
-rw-r--r--sys/netinet/ip_dummynet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_dummynet.c b/sys/netinet/ip_dummynet.c
index bc3100f..c800682 100644
--- a/sys/netinet/ip_dummynet.c
+++ b/sys/netinet/ip_dummynet.c
@@ -2141,7 +2141,7 @@ ip_dn_init(void)
taskqueue_thread_enqueue, &dn_tq);
taskqueue_start_threads(&dn_tq, 1, PI_NET, "dummynet");
- callout_init(&dn_timeout, NET_CALLOUT_MPSAFE);
+ callout_init(&dn_timeout, CALLOUT_MPSAFE);
callout_reset(&dn_timeout, 1, dummynet, NULL);
/* Initialize curr_time adjustment mechanics. */
OpenPOWER on IntegriCloud