From: Roger Pau Monne Date: Mon, 18 Mar 2013 16:49:34 +0000 (+0100) Subject: xen-blkfront: switch from llist to list X-Git-Tag: v3.9-rc5~3^2~9^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=155b7edb51430a280f86c1e21b7be308b0d219d4;p=pandora-kernel.git xen-blkfront: switch from llist to list The git commit f84adf4921ae3115502f44ff467b04bf2f88cf04 (xen-blkfront: drop the use of llist_for_each_entry_safe) was a stop-gate to fix a GCC4.1 bug. The appropiate way is to actually use an list instead of using an llist. As such this patch replaces the usage of llist with an list. Since we always manipulate the list while holding the io_lock, there's no need for additional locking (llist used previously is safe to use concurrently without additional locking). Signed-off-by: Roger Pau Monné CC: stable@vger.kernel.org [v1: Redid the git commit description] Signed-off-by: Konrad Rzeszutek Wilk --- Reading git-diff-tree failed