diff options
author | NeilBrown <neilb@suse.com> | 2019-03-21 06:54:22 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2020-03-17 19:25:06 +0300 |
commit | c84716c401d34eed5ed45a9c3553b08b0d541b9a (patch) | |
tree | ee3f27f3f74f14bb5217b3d9036cede9d70c20b1 /include/linux/list.h | |
parent | fb33c6510d5595144d585aa194d377cf74d31911 (diff) | |
download | linux-c84716c401d34eed5ed45a9c3553b08b0d541b9a.tar.xz |
list/hashtable: minor documentation corrections.
hash_for_each_safe() and hash_for_each_possible_safe()
need to be passed a temp 'struct hlist_node' pointer, but
do not say that in the documentation - they just say
a 'struct'.
Also the documentation for hlist_for_each_entry_safe()
describes @n as "another" hlist_node, but in reality it is
the only one.
Signed-off-by: NeilBrown <neilb@suse.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/list.h')
-rw-r--r-- | include/linux/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/list.h b/include/linux/list.h index 884216db3246..aff44d34f4e4 100644 --- a/include/linux/list.h +++ b/include/linux/list.h @@ -989,7 +989,7 @@ static inline void hlist_move_list(struct hlist_head *old, /** * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry * @pos: the type * to use as a loop cursor. - * @n: another &struct hlist_node to use as temporary storage + * @n: a &struct hlist_node to use as temporary storage * @head: the head for your list. * @member: the name of the hlist_node within the struct. */ |