[PATCH 04/11] smp: Iterate functions through llist_for_each_entry_safe()

2014-02-24 Thread Frederic Weisbecker
From: Jan Kara The IPI function llist iteration is open coded. Lets simplify this with using an llist iterator. Also we want to keep the iteration safe against possible csd.llist->next value reuse from the IPI handler. At least the block subsystem used to do such things so lets stay careful and

[PATCH 04/11] smp: Iterate functions through llist_for_each_entry_safe()

2014-02-08 Thread Frederic Weisbecker
From: Jan Kara The IPI function llist iteration is open coded. Lets simplify this with using an llist iterator. Also we want to keep the iteration safe against possible csd.llist->next value reuse from the IPI handler. At least the block subsystem used to do such things so lets stay careful and