diff options
Diffstat (limited to 'kernel/bpf/arraymap.c')
-rw-r--r-- | kernel/bpf/arraymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/arraymap.c b/kernel/bpf/arraymap.c index ec621df5a97a..5e00b2333c26 100644 --- a/kernel/bpf/arraymap.c +++ b/kernel/bpf/arraymap.c | |||
@@ -182,7 +182,7 @@ int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value) | |||
182 | static int array_map_get_next_key(struct bpf_map *map, void *key, void *next_key) | 182 | static int array_map_get_next_key(struct bpf_map *map, void *key, void *next_key) |
183 | { | 183 | { |
184 | struct bpf_array *array = container_of(map, struct bpf_array, map); | 184 | struct bpf_array *array = container_of(map, struct bpf_array, map); |
185 | u32 index = *(u32 *)key; | 185 | u32 index = key ? *(u32 *)key : U32_MAX; |
186 | u32 *next = (u32 *)next_key; | 186 | u32 *next = (u32 *)next_key; |
187 | 187 | ||
188 | if (index >= array->map.max_entries) { | 188 | if (index >= array->map.max_entries) { |