tree 8c9bce6a8c3c349c9ebac3cf0ae8b6cf6ad1ce01 parent 6f57a0552fc3c53c850c0d780ba5390f2658297b author Paul E. McKenney <[EMAIL PROTECTED]> Tue Apr 12 08:26:19 2005 committer Linus Torvalds <[EMAIL PROTECTED]> Tue Apr 12 08:26:19 2005
[PATCH] Fix comment in list.h that refers to nonexistent API The hlist_for_each_entry_rcu() comment block refers to a nonexistent hlist_add_rcu() API, needs to change to hlist_add_head_rcu(). Signed-off-by: Paul E. McKenney <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]> list.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: include/linux/list.h =================================================================== --- fefd62f9db584a807b87f7c58ed3544a58e886d3/include/linux/list.h (mode:100644 sha1:9fbf120a9c91cd7e638fa09fe1ef8d47a1b0f85a) +++ 8c9bce6a8c3c349c9ebac3cf0ae8b6cf6ad1ce01/include/linux/list.h (mode:100644 sha1:e3f436caa9053fca47616f43684ea32a4e82e608) @@ -692,7 +692,7 @@ * @member: the name of the hlist_node within the struct. * * This list-traversal primitive may safely run concurrently with - * the _rcu list-mutation primitives such as hlist_add_rcu() + * the _rcu list-mutation primitives such as hlist_add_head_rcu() * as long as the traversal is guarded by rcu_read_lock(). */ #define hlist_for_each_entry_rcu(tpos, pos, head, member) \ - To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
