Lines Matching defs:new
106 struct rb_node **new = &(root->rb_node), *parent = NULL;
108 while (*new) {
111 this = container_of(*new, struct bpf_cgroup_storage, node);
113 parent = *new;
116 new = &((*new)->rb_left);
119 new = &((*new)->rb_right);
126 rb_link_node(&storage->node, parent, new);
148 struct bpf_storage_buffer *new;
167 new = bpf_map_kmalloc_node(map, struct_size(new, data, map->value_size),
170 if (!new)
173 memcpy(&new->data[0], value, map->value_size);
174 check_and_init_map_value(map, new->data);
176 new = xchg(&storage->buf, new);
177 kfree_rcu(new, rcu);