aboutsummaryrefslogtreecommitdiff
path: root/core/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/cpu.c')
-rw-r--r--core/cpu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/cpu.c b/core/cpu.c
index 4f518a4..a83f8ba 100644
--- a/core/cpu.c
+++ b/core/cpu.c
@@ -739,13 +739,13 @@ struct cpu_thread *find_cpu_by_server(u32 server_no)
struct cpu_thread *next_cpu(struct cpu_thread *cpu)
{
- struct cpu_stack *s = container_of(cpu, struct cpu_stack, cpu);
- unsigned int index;
+ struct cpu_stack *s;
+ unsigned int index = 0;
- if (cpu == NULL)
- index = 0;
- else
+ if (cpu != NULL) {
+ s = container_of(cpu, struct cpu_stack, cpu);
index = s - cpu_stacks + 1;
+ }
for (; index <= cpu_max_pir; index++) {
cpu = &cpu_stacks[index].cpu;
if (cpu->state != cpu_state_no_cpu)