mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix Sibyte SMP kernel breakage caused by r208249.
We need to include the header file that provides declaration of the smp_topo_none() function.
This commit is contained in:
parent
50e5b49dea
commit
c0fd703892
1 changed files with 2 additions and 0 deletions
|
|
@ -76,6 +76,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include <machine/vmparam.h>
|
||||
|
||||
#ifdef SMP
|
||||
#include <sys/smp.h>
|
||||
#include <machine/smp.h>
|
||||
#endif
|
||||
|
||||
|
|
@ -347,6 +348,7 @@ platform_ipi_intrnum(void)
|
|||
struct cpu_group *
|
||||
platform_smp_topo(void)
|
||||
{
|
||||
|
||||
return (smp_topo_none());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue