Module Name: src Committed By: knakahara Date: Tue Mar 24 09:27:46 UTC 2020
Modified Files: src/sys/arch/x86/pci: if_vmx.c Log Message: fix vmx(4) cannot link up at boot time. reviewed by msaitoh@n.o, thanks. vmx(4) could call if_link_state_change(ifp, LINK_STATE_UP) from vmxnet3_init() before ifp->if_link_cansched was set, because dp->dom_if_up() (in6_if_up() for INET6) could call ifp->if_init(). And then, workqueue_enqueue() was not called at that time. As the result, the last LQ_ITEM was stuck LINK_STATE_UP, so if_link_state_change_work_schedule() was never called until if_link_state_change(ifp, LINK_STATE_DOWN) was called. To fix this issue, vmx(4) avoid calling if_link_state_change() before ifp->if_link_cansched is set. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/sys/arch/x86/pci/if_vmx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.