We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156c977 commit 3d5611bCopy full SHA for 3d5611b
kernel/bpf/lpm_trie.c
@@ -315,7 +315,7 @@ static long trie_update_elem(struct bpf_map *map,
315
void *_key, void *value, u64 flags)
316
{
317
struct lpm_trie *trie = container_of(map, struct lpm_trie, map);
318
- struct lpm_trie_node *node, *im_node = NULL, *new_node = NULL;
+ struct lpm_trie_node *node, *im_node, *new_node = NULL;
319
struct lpm_trie_node *free_node = NULL;
320
struct lpm_trie_node __rcu **slot;
321
struct bpf_lpm_trie_key_u8 *key = _key;
@@ -431,9 +431,7 @@ static long trie_update_elem(struct bpf_map *map,
431
if (ret) {
432
if (new_node)
433
trie->n_entries--;
434
-
435
kfree(new_node);
436
- kfree(im_node);
437
}
438
439
spin_unlock_irqrestore(&trie->lock, irq_flags);
0 commit comments