aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/Kconfig1
-rw-r--r--arch/s390/kernel/smp.c6
-rw-r--r--arch/s390/kernel/time.c2
3 files changed, 2 insertions, 7 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig
index 8116a3328a19..b4aa5869c7f9 100644
--- a/arch/s390/Kconfig
+++ b/arch/s390/Kconfig
@@ -75,6 +75,7 @@ config S390
75 select HAVE_KRETPROBES 75 select HAVE_KRETPROBES
76 select HAVE_KVM if 64BIT 76 select HAVE_KVM if 64BIT
77 select HAVE_ARCH_TRACEHOOK 77 select HAVE_ARCH_TRACEHOOK
78 select INIT_ALL_POSSIBLE
78 79
79source "init/Kconfig" 80source "init/Kconfig"
80 81
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c
index b5595688a477..f03914b8ed2f 100644
--- a/arch/s390/kernel/smp.c
+++ b/arch/s390/kernel/smp.c
@@ -52,12 +52,6 @@
52struct _lowcore *lowcore_ptr[NR_CPUS]; 52struct _lowcore *lowcore_ptr[NR_CPUS];
53EXPORT_SYMBOL(lowcore_ptr); 53EXPORT_SYMBOL(lowcore_ptr);
54 54
55cpumask_t cpu_online_map = CPU_MASK_NONE;
56EXPORT_SYMBOL(cpu_online_map);
57
58cpumask_t cpu_possible_map = CPU_MASK_ALL;
59EXPORT_SYMBOL(cpu_possible_map);
60
61static struct task_struct *current_set[NR_CPUS]; 55static struct task_struct *current_set[NR_CPUS];
62 56
63static u8 smp_cpu_type; 57static u8 smp_cpu_type;
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c
index eccefbbff887..f5bd141c8443 100644
--- a/arch/s390/kernel/time.c
+++ b/arch/s390/kernel/time.c
@@ -154,7 +154,7 @@ void init_cpu_timer(void)
154 cd->min_delta_ns = 1; 154 cd->min_delta_ns = 1;
155 cd->max_delta_ns = LONG_MAX; 155 cd->max_delta_ns = LONG_MAX;
156 cd->rating = 400; 156 cd->rating = 400;
157 cd->cpumask = cpumask_of_cpu(cpu); 157 cd->cpumask = cpumask_of(cpu);
158 cd->set_next_event = s390_next_event; 158 cd->set_next_event = s390_next_event;
159 cd->set_mode = s390_set_mode; 159 cd->set_mode = s390_set_mode;
160 160