From: Sjur Brændeland Date: Mon, 11 Apr 2011 10:11:29 +0000 (+0000) Subject: caif: Bugfix use for_each_safe when removing list nodes. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0c184ed9032c58b21f0d90de28c796874b73d6a1;p=linux-beck.git caif: Bugfix use for_each_safe when removing list nodes. Signed-off-by: Sjur Brændeland Signed-off-by: David S. Miller --- diff --git a/net/caif/cfmuxl.c b/net/caif/cfmuxl.c index 46f34b2e0478..24f1ffa74b06 100644 --- a/net/caif/cfmuxl.c +++ b/net/caif/cfmuxl.c @@ -244,9 +244,9 @@ static void cfmuxl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl, int phyid) { struct cfmuxl *muxl = container_obj(layr); - struct list_head *node; + struct list_head *node, *next; struct cflayer *layer; - list_for_each(node, &muxl->srvl_list) { + list_for_each_safe(node, next, &muxl->srvl_list) { layer = list_entry(node, struct cflayer, node); if (cfsrvl_phyid_match(layer, phyid)) layer->ctrlcmd(layer, ctrl, phyid);