https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=241774

--- Comment #24 from Vincenzo Maffione <vmaffi...@freebsd.org> ---
(In reply to John Hartley from comment #22)
MFC r339639 does not add netmap support to e1000, vtnet & co. Such support
exists since FreeBSD 10. Moreover, netmap code is platform independent, so it
does not make sense that a bug in netmap would show up in Q35 and not in the
other platform.

It is more reasonable that the issue is related to the PCI code.
If I get it correctly, your issue is that you don't detect devices (e.g. you
don't see em0 or vtnet0 in ifconfig). If this happens, it means that the
device_probe routine of the proper driver is not called, or maybe it is called
but it does not recognize the device for some reason. For example, you have
em_probe() or lem_probe() for e1000 devices. You may add a print statement
there to see whether it is called or not.
Note that device probe is a functionality related to the PCI/PCIe bus,
irrespective of netmap.

Have you tried to remove "dev netmap" from the kernel config (for a clean
11.3)? This will confirm that the problem is still there irrespective of netmap
being included or not.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-virtualization@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization
To unsubscribe, send any mail to 
"freebsd-virtualization-unsubscr...@freebsd.org"

Reply via email to