diff options
author | travis@sgi.com <travis@sgi.com> | 2017-01-25 11:35:18 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-02-01 04:20:59 -0500 |
commit | 74862b03b46a852662c1a30c859b985261ff5d5c (patch) | |
tree | 18cc5e07007649f999c092dcaf615026a2b51f79 /arch/x86/include/asm/uv | |
parent | 7243e10689fd17a3e151f41216569295cefa2958 (diff) |
x86/platform/UV: Add Support for UV4 Hubless systems
Add recognition and support for UV4 hubless systems.
Signed-off-by: Mike Travis <travis@sgi.com>
Reviewed-by: Russ Anderson <rja@hpe.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Dimitri Sivanich <sivanich@hpe.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20170125163517.398537358@asylum.americas.sgi.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include/asm/uv')
-rw-r--r-- | arch/x86/include/asm/uv/uv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/uv/uv.h b/arch/x86/include/asm/uv/uv.h index 062921ef34e9..6686820feae9 100644 --- a/arch/x86/include/asm/uv/uv.h +++ b/arch/x86/include/asm/uv/uv.h | |||
@@ -10,6 +10,7 @@ struct mm_struct; | |||
10 | 10 | ||
11 | extern enum uv_system_type get_uv_system_type(void); | 11 | extern enum uv_system_type get_uv_system_type(void); |
12 | extern int is_uv_system(void); | 12 | extern int is_uv_system(void); |
13 | extern int is_uv_hubless(void); | ||
13 | extern void uv_cpu_init(void); | 14 | extern void uv_cpu_init(void); |
14 | extern void uv_nmi_init(void); | 15 | extern void uv_nmi_init(void); |
15 | extern void uv_system_init(void); | 16 | extern void uv_system_init(void); |
@@ -23,6 +24,7 @@ extern const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask, | |||
23 | 24 | ||
24 | static inline enum uv_system_type get_uv_system_type(void) { return UV_NONE; } | 25 | static inline enum uv_system_type get_uv_system_type(void) { return UV_NONE; } |
25 | static inline int is_uv_system(void) { return 0; } | 26 | static inline int is_uv_system(void) { return 0; } |
27 | static inline int is_uv_hubless(void) { return 0; } | ||
26 | static inline void uv_cpu_init(void) { } | 28 | static inline void uv_cpu_init(void) { } |
27 | static inline void uv_system_init(void) { } | 29 | static inline void uv_system_init(void) { } |
28 | static inline const struct cpumask * | 30 | static inline const struct cpumask * |