aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_ip_input.c
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2003-03-04 23:19:55 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2003-03-04 23:19:55 +0000
commit1cafed3941f1a4e9d2beb4fb126e91018505dfd4 (patch)
treef304f726e8973253d3e8a87e56119fec0276a61c /sys/netgraph/ng_ip_input.c
parentc141c242ac0a55a34b58cf2b06d13964d00507a4 (diff)
Notes
Diffstat (limited to 'sys/netgraph/ng_ip_input.c')
-rw-r--r--sys/netgraph/ng_ip_input.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netgraph/ng_ip_input.c b/sys/netgraph/ng_ip_input.c
index eb8a74d7ac05..bb24c6435fcb 100644
--- a/sys/netgraph/ng_ip_input.c
+++ b/sys/netgraph/ng_ip_input.c
@@ -125,8 +125,7 @@ ngipi_rcvdata(hook_p hook, item_p item)
NGI_GET_M(item, m);
NG_FREE_ITEM(item);
- schednetisr(NETISR_IP);
- (void) IF_HANDOFF(&ipintrq, m, NULL);
+ netisr_dispatch(NETISR_IP, m);
return 0;
}