Skip to content

Commit

Permalink
aue/lgue: Utilize netisr to run if_start
Browse files Browse the repository at this point in the history
  • Loading branch information
Sepherosa Ziehau committed Sep 23, 2012
1 parent ff5fbdd commit 006f2e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sys/dev/netif/aue/if_aue.c
Expand Up @@ -974,7 +974,7 @@ aue_start_ipifunc(void *arg)

crit_enter();
if (lmsg->ms_flags & MSGF_DONE)
lwkt_sendmsg(ifnet_portfn(mycpuid), lmsg);
lwkt_sendmsg(netisr_portfn(mycpuid), lmsg);
crit_exit();
}

Expand Down
2 changes: 1 addition & 1 deletion sys/dev/netif/lgue/if_lgue.c
Expand Up @@ -469,7 +469,7 @@ lgue_start_ipifunc(void *arg)
lmsg = &ifp->if_start_nmsg[mycpuid].lmsg;
crit_enter();
if (lmsg->ms_flags & MSGF_DONE)
lwkt_sendmsg(ifnet_portfn(mycpuid), lmsg);
lwkt_sendmsg(netisr_portfn(mycpuid), lmsg);
crit_exit();
}

Expand Down

0 comments on commit 006f2e1

Please sign in to comment.