goingstudy
2014-Jul-03 09:12 UTC
xen/common/timer.c, a part of ready list timers don't free?
Hi all, In xen/common/timer.c, static void timer_softirq_action(... ) { ..... while ( ((t = ts->list) != NULL) && (t->expires < now) ) { ts->list = t->list_next; execute_timer(ts, t); } ..... } This execute ready list timers, the following code will process the timers pointed by ts->list, but nothing be done to the timers before ts->list after above while. I suspect this would lead memory leak? thanks _______________________________________________ Xen-users mailing list Xen-users@lists.xen.org http://lists.xen.org/xen-users