https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227654
--- Comment #5 from Eugene Grosbein <[email protected]> --- I've added additional printf's to sys/net/if_ethersubr.c and found that it panices within ether_output_frame() function. I've added this just before PFIL_HOOKED(&V_link_pfil_hook) check: if (ifp->if_index == 6) printf(""ether_output_frame: checking curvnet=%p\n", curvnet); if (ifp->if_index == 6) printf(""ether_output_frame: V_link_pfil_hook=%p\n", V_link_pfil_hook); And last lines of dmesg buffer after panic are: ether_output_frame: checking curvnet=0 panic: vm_fault_hold: fault on nofault entry, addr: 0 So, curvnet is NULL here, hence the panic. -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[email protected]"
