Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d079337 authored by David Miller's avatar David Miller Committed by Ingo Molnar
Browse files

sparc64: Fix cpumask related build failure



cpumask_of_pcibus() was missing - this triggers on NUMA builds.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 93423b86
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -47,6 +47,10 @@ static inline int pcibus_to_node(struct pci_bus *pbus)
	(pcibus_to_node(bus) == -1 ? \
	(pcibus_to_node(bus) == -1 ? \
	 CPU_MASK_ALL : \
	 CPU_MASK_ALL : \
	 node_to_cpumask(pcibus_to_node(bus)))
	 node_to_cpumask(pcibus_to_node(bus)))
#define cpumask_of_pcibus(bus)	\
	(pcibus_to_node(bus) == -1 ? \
	 CPU_MASK_ALL_PTR : \
	 cpumask_of_node(pcibus_to_node(bus)))


#define SD_NODE_INIT (struct sched_domain) {		\
#define SD_NODE_INIT (struct sched_domain) {		\
	.min_interval		= 8,			\
	.min_interval		= 8,			\