HV: Fix the missing list_head initializaiton

Signed-off-by: Zide Chen <zide.chen@intel.com>
Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
Zide Chen 2018-05-07 22:59:51 -07:00 committed by Jack Ren
parent e386a814ae
commit 260b37a52f

View File

@ -61,6 +61,7 @@ static inline void initialize_timer(struct timer *timer,
timer->fire_tsc = fire_tsc;
timer->mode = mode;
timer->period_in_cycle = period_in_cycle;
INIT_LIST_HEAD(&timer->node);
}
}