Commit ac833bdd authored by Thomas Graf's avatar Thomas Graf Committed by David S. Miller

rhashtable: Mark internal/private inline functions as such

Signed-off-by: default avatarThomas Graf <tgraf@suug.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 299e5c32
......@@ -539,6 +539,7 @@ static inline void *rhashtable_lookup_fast(
return NULL;
}
/* Internal function, please use rhashtable_insert_fast() instead */
static inline int __rhashtable_insert_fast(
struct rhashtable *ht, const void *key, struct rhash_head *obj,
const struct rhashtable_params params)
......@@ -711,6 +712,7 @@ static inline int rhashtable_lookup_insert_key(
return __rhashtable_insert_fast(ht, key, obj, params);
}
/* Internal function, please use rhashtable_remove_fast() instead */
static inline int __rhashtable_remove_fast(
struct rhashtable *ht, struct bucket_table *tbl,
struct rhash_head *obj, const struct rhashtable_params params)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment