mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
sparc64: Fix cpumask related build failure
cpumask_of_pcibus() was missing - this triggers on NUMA builds. Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
93423b8665
commit
9d07933709
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,10 @@ static inline int pcibus_to_node(struct pci_bus *pbus)
|
|||
(pcibus_to_node(bus) == -1 ? \
|
||||
CPU_MASK_ALL : \
|
||||
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) { \
|
||||
.min_interval = 8, \
|
||||
|
|
Loading…
Reference in a new issue