diff options
author | Ian Rogers <irogers@google.com> | 2020-05-15 09:50:03 -0700 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2020-05-16 01:06:05 +0200 |
commit | 8d35d74f52ae07689e575ea21f7dc2e07dd1392f (patch) | |
tree | fb494f06c3e84fa224b6ff2baced24437ad4092a /tools | |
parent | f516acd5397fdbb77ef0aad0798d9ef7c3001d72 (diff) | |
download | linux-stable-8d35d74f52ae07689e575ea21f7dc2e07dd1392f.tar.gz linux-stable-8d35d74f52ae07689e575ea21f7dc2e07dd1392f.tar.bz2 linux-stable-8d35d74f52ae07689e575ea21f7dc2e07dd1392f.zip |
libbpf, hashmap: Fix signedness warnings
Fixes the following warnings:
hashmap.c: In function ‘hashmap__clear’:
hashmap.h:150:20: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare]
150 | for (bkt = 0; bkt < map->cap; bkt++) \
hashmap.c: In function ‘hashmap_grow’:
hashmap.h:150:20: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare]
150 | for (bkt = 0; bkt < map->cap; bkt++) \
Signed-off-by: Ian Rogers <irogers@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Andrii Nakryiko <andriin@fb.com>
Link: https://lore.kernel.org/bpf/20200515165007.217120-4-irogers@google.com
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/bpf/hashmap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/lib/bpf/hashmap.c b/tools/lib/bpf/hashmap.c index cffb96202e0d..a405dad068f5 100644 --- a/tools/lib/bpf/hashmap.c +++ b/tools/lib/bpf/hashmap.c @@ -60,7 +60,7 @@ struct hashmap *hashmap__new(hashmap_hash_fn hash_fn, void hashmap__clear(struct hashmap *map) { struct hashmap_entry *cur, *tmp; - int bkt; + size_t bkt; hashmap__for_each_entry_safe(map, cur, tmp, bkt) { free(cur); @@ -100,8 +100,7 @@ static int hashmap_grow(struct hashmap *map) struct hashmap_entry **new_buckets; struct hashmap_entry *cur, *tmp; size_t new_cap_bits, new_cap; - size_t h; - int bkt; + size_t h, bkt; new_cap_bits = map->cap_bits + 1; if (new_cap_bits < HASHMAP_MIN_CAP_BITS) |