diff options
author | Tyrel Datwyler <tyreld@linux.vnet.ibm.com> | 2018-10-22 20:32:12 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-10-26 21:58:58 +1100 |
commit | 8dce6b2215eaa91dbf04463e11098a48748da5ab (patch) | |
tree | d920be04c51d0b5d1c512384c6e20fe21e7f208e /arch | |
parent | 48dc0ef19044bfb69193302fbe3a834e3331b7ae (diff) | |
download | linux-8dce6b2215eaa91dbf04463e11098a48748da5ab.tar.gz linux-8dce6b2215eaa91dbf04463e11098a48748da5ab.tar.bz2 linux-8dce6b2215eaa91dbf04463e11098a48748da5ab.zip |
powerpc/pseries: add missing cpumask.h include file
Build error is encountered when inlcuding <asm/rtas.h> if no explicit or
implicit include of cpumask.h exists in the including file.
In file included from arch/powerpc/platforms/pseries/hotplug-pci.c:3:0:
./arch/powerpc/include/asm/rtas.h:360:34: error: unknown type name 'cpumask_var_t'
extern int rtas_online_cpus_mask(cpumask_var_t cpus);
^
./arch/powerpc/include/asm/rtas.h:361:35: error: unknown type name 'cpumask_var_t'
extern int rtas_offline_cpus_mask(cpumask_var_t cpus);
Fixes: 120496ac2d2d ("powerpc: Bring all threads online prior to migration/hibernation")
Signed-off-by: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/rtas.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/rtas.h b/arch/powerpc/include/asm/rtas.h index bb38dd67d47d..1b06add4f092 100644 --- a/arch/powerpc/include/asm/rtas.h +++ b/arch/powerpc/include/asm/rtas.h @@ -5,6 +5,7 @@ #include <linux/spinlock.h> #include <asm/page.h> #include <linux/time.h> +#include <linux/cpumask.h> /* * Definitions for talking to the RTAS on CHRP machines. |