https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=222314
Bjoern A. Zeeb <b...@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|DUPLICATE |--- Component|arm |kern Summary|ifconfig epair create |ifconfig epair create |panics the kernel (arm64) |panics the kernel (arm64, | |powerpc) Version|11.1-STABLE |CURRENT Status|Closed |Open Assignee|n...@freebsd.org |b...@freebsd.org --- Comment #5 from Bjoern A. Zeeb <b...@freebsd.org> --- (In reply to Mark Millard from comment #4) Ignoring the LOR. Ignoring the fact that this bug report was arm64 specific. Let's see if it is the same problem at least; otherwise we should track this elsewhere. Shot in the dark, can you try adding powerpc to the place in sys/net/vnet.h as was done in https://svnweb.freebsd.org/base?view=revision&revision=336909 for arm64 ? changing the line #if defined(KLD_MODULE) && defined(__aarch64__) to #if defined(KLD_MODULE) && (defined(__aarch64__) || \ defined(__powerpc__) || defined(__powerpc64__)) and see if this helps; Be aware that (a) I hope I got the correct __<foo>__ for powerpc and (b) at the moment I am assuming that this applies to both and we need both. I am absolutely not sure which one is correct or needed for FreeBSD's powerpc support. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-net@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"