Lines Matching defs:uvalue
49 /* uvalue->data stores the kernel struct
55 struct bpf_struct_ops_value *uvalue;
259 struct bpf_struct_ops_value *uvalue, *kvalue;
277 uvalue = value;
278 memcpy(uvalue, st_map->uvalue, map->value_size);
279 uvalue->state = state;
287 refcount_set(&uvalue->refcnt, max_t(s64, refcnt, 0));
374 struct bpf_struct_ops_value *uvalue, *kvalue;
393 uvalue = value;
394 err = check_zero_holes(t, uvalue->data);
398 if (uvalue->state || refcount_read(&uvalue->refcnt))
405 uvalue = (struct bpf_struct_ops_value *)st_map->uvalue;
415 memcpy(uvalue, value, map->value_size);
417 udata = &uvalue->data;
555 memset(uvalue, 0, map->value_size);
619 bpf_map_area_free(st_map->uvalue);
684 st_map->uvalue = bpf_map_area_alloc(vt->size, NUMA_NO_NODE);
689 if (!st_map->uvalue || !st_map->links || !st_map->image) {