From: Frank Pavlic Date: Sun, 27 Nov 2005 04:48:40 +0000 (-0800) Subject: [PATCH] klist: Fix broken kref counting in find functions X-Git-Tag: upstream/snapshot3+hdmi~43593^2~16^2~25^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e22dafbcd7a579c29a424d5203b5b33b131948a7;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [PATCH] klist: Fix broken kref counting in find functions The klist reference counting in the find functions that use klist_iter_init_node is broken. If the function (for example driver_find_device) is called with a NULL start object then everything is fine, the first call to next_device()/klist_next increases the ref-count of the first node on the list and does nothing for the start object which is NULL. If they are called with a valid start object then klist_next will decrement the ref-count for the start object but nobody has incremented it. Logical place to fix this would be klist_iter_init_node because the function puts a reference of the object into the klist_iter struct. Signed-off-by: Martin Schwidefsky Signed-off-by: Frank Pavlic Cc: Patrick Mochel Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- diff --git a/lib/klist.c b/lib/klist.c index bb2f355..9c94f0b 100644 --- a/lib/klist.c +++ b/lib/klist.c @@ -199,6 +199,8 @@ void klist_iter_init_node(struct klist * k, struct klist_iter * i, struct klist_ i->i_klist = k; i->i_head = &k->k_list; i->i_cur = n; + if (n) + kref_get(&n->n_ref); } EXPORT_SYMBOL_GPL(klist_iter_init_node);