When the node receives NGM_FLOW_COOKIE update the if_link_state, instead

of playing with almost dead IFF_DRV_RUNNING flag.

Sponsored by:	Nginx, Inc.
This commit is contained in:
Gleb Smirnoff 2015-01-12 09:50:42 +00:00
parent 42c3b709c2
commit 06143100da
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277059

View File

@ -639,10 +639,10 @@ ng_iface_rcvmsg(node_p node, item_p item, hook_p lasthook)
case NGM_FLOW_COOKIE:
switch (msg->header.cmd) {
case NGM_LINK_IS_UP:
ifp->if_drv_flags |= IFF_DRV_RUNNING;
if_link_state_change(ifp, LINK_STATE_UP);
break;
case NGM_LINK_IS_DOWN:
ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
if_link_state_change(ifp, LINK_STATE_DOWN);
break;
default:
break;