Commit 61e09046 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] explicitly initialise kstat per-cpu storage

This is a requirement for ancient gcc's
parent 62fb568f
......@@ -856,7 +856,7 @@ static inline void idle_tick(runqueue_t *rq)
#endif
DEFINE_PER_CPU(struct kernel_stat, kstat);
DEFINE_PER_CPU(struct kernel_stat, kstat) = { { 0 } };
/*
* We place interactive tasks back into the active array, if possible.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment