aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/hashtable.h
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.com>2019-03-21 14:54:22 +1100
committerJiri Kosina <jkosina@suse.cz>2020-03-17 17:25:06 +0100
commitc84716c401d34eed5ed45a9c3553b08b0d541b9a (patch)
treeee3f27f3f74f14bb5217b3d9036cede9d70c20b1 /include/linux/hashtable.h
parentLinux 5.6-rc6 (diff)
downloadwireguard-linux-c84716c401d34eed5ed45a9c3553b08b0d541b9a.tar.xz
wireguard-linux-c84716c401d34eed5ed45a9c3553b08b0d541b9a.zip
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/hashtable.h')
-rw-r--r--include/linux/hashtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/hashtable.h b/include/linux/hashtable.h
index 417d2c4bc60d..78b6ea5fa8ba 100644
--- a/include/linux/hashtable.h
+++ b/include/linux/hashtable.h
@@ -145,7 +145,7 @@ static inline void hash_del_rcu(struct hlist_node *node)
* hash entry
* @name: hashtable to iterate
* @bkt: integer to use as bucket loop cursor
- * @tmp: a &struct used for temporary storage
+ * @tmp: a &struct hlist_node used for temporary storage
* @obj: the type * to use as a loop cursor for each entry
* @member: the name of the hlist_node within the struct
*/
@@ -197,7 +197,7 @@ static inline void hash_del_rcu(struct hlist_node *node)
* same bucket safe against removals
* @name: hashtable to iterate
* @obj: the type * to use as a loop cursor for each entry
- * @tmp: a &struct used for temporary storage
+ * @tmp: a &struct hlist_node used for temporary storage
* @member: the name of the hlist_node within the struct
* @key: the key of the objects to iterate over
*/