/linux-6.3-rc2/drivers/vdpa/vdpa_user/ |
A D | iova_domain.c | 28 map_file = kmalloc(sizeof(*map_file), GFP_ATOMIC); in vduse_iotlb_add_range() 29 if (!map_file) in vduse_iotlb_add_range() 33 map_file->offset = offset; in vduse_iotlb_add_range() 36 addr, perm, map_file); in vduse_iotlb_add_range() 38 fput(map_file->file); in vduse_iotlb_add_range() 39 kfree(map_file); in vduse_iotlb_add_range() 53 fput(map_file->file); in vduse_iotlb_del_range() 54 kfree(map_file); in vduse_iotlb_del_range() 75 map_file->file, in vduse_domain_set_map() 475 fput(map_file->file); in vduse_domain_free_coherent() [all …]
|
A D | vduse_dev.c | 1046 struct vdpa_map_file *map_file; in vduse_dev_ioctl() local 1062 map_file = (struct vdpa_map_file *)map->opaque; in vduse_dev_ioctl() 1063 f = get_file(map_file->file); in vduse_dev_ioctl() 1064 entry.offset = map_file->offset; in vduse_dev_ioctl()
|
/linux-6.3-rc2/kernel/bpf/ |
A D | arraymap.c | 818 int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file, in bpf_fd_array_map_update_elem() argument 832 new_ptr = map->ops->map_fd_get_ptr(map, map_file, ufd); in bpf_fd_array_map_update_elem() 877 struct file *map_file, int fd) in prog_fd_array_get_ptr() argument 1163 struct file *map_file) in bpf_event_entry_gen() argument 1171 ee->map_file = map_file; in bpf_event_entry_gen() 1192 struct file *map_file, int fd) in perf_event_fd_array_get_ptr() argument 1208 ee = bpf_event_entry_gen(perf_file, map_file); in perf_event_fd_array_get_ptr() 1223 struct file *map_file) in perf_event_fd_array_release() argument 1235 if (ee && ee->map_file == map_file) in perf_event_fd_array_release() 1265 struct file *map_file /* not used */, in cgroup_fd_array_get_ptr() argument
|
A D | map_in_map.h | 14 void *bpf_map_fd_get_ptr(struct bpf_map *map, struct file *map_file,
|
A D | map_in_map.c | 120 struct file *map_file /* not used */, in bpf_map_fd_get_ptr() argument
|
A D | syscall.c | 178 static int bpf_map_update_value(struct bpf_map *map, struct file *map_file, in bpf_map_update_value() argument 193 return bpf_fd_array_map_update_elem(map, map_file, key, value, in bpf_map_update_value() 208 err = bpf_fd_array_map_update_elem(map, map_file, key, value, in bpf_map_update_value() 213 err = bpf_fd_htab_map_update_elem(map, map_file, key, value, in bpf_map_update_value() 1646 int generic_map_update_batch(struct bpf_map *map, struct file *map_file, in generic_map_update_batch() argument 1687 err = bpf_map_update_value(map, map_file, key, value, in generic_map_update_batch()
|
A D | hashtab.c | 2439 int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file, in bpf_fd_htab_map_update_elem() argument 2446 ptr = map->ops->map_fd_get_ptr(map, map_file, ufd); in bpf_fd_htab_map_update_elem()
|
/linux-6.3-rc2/drivers/vhost/ |
A D | vdpa.c | 761 struct vdpa_map_file *map_file; in vhost_vdpa_va_unmap() local 765 fput(map_file->file); in vhost_vdpa_va_unmap() 766 kfree(map_file); in vhost_vdpa_va_unmap() 867 struct vdpa_map_file *map_file; in vhost_vdpa_va_map() local 884 map_file = kzalloc(sizeof(*map_file), GFP_KERNEL); in vhost_vdpa_va_map() 885 if (!map_file) { in vhost_vdpa_va_map() 890 map_file->offset = offset; in vhost_vdpa_va_map() 891 map_file->file = get_file(vma->vm_file); in vhost_vdpa_va_map() 893 perm, map_file); in vhost_vdpa_va_map() 895 fput(map_file->file); in vhost_vdpa_va_map() [all …]
|
/linux-6.3-rc2/scripts/ |
A D | insert-sys-cert.c | 201 static void *map_file(char *file_name, int *size) in map_file() function 314 hdr = map_file(vmlinux_file, &vmlinux_size); in main()
|
/linux-6.3-rc2/tools/testing/selftests/bpf/ |
A D | test_offload.py | 613 def check_dev_info_removed(prog_file=None, map_file=None): argument 622 ret, err = bpftool("map show pin %s" % (map_file), fail=False) 628 def check_dev_info(other_ns, ns, prog_file=None, map_file=None, removed=False): argument 1194 map_file, _ = pin_map("/sys/fs/bpf/tmp_map", idx=1, expected=2) variable 1198 check_dev_info_removed(prog_file=prog_file, map_file=map_file)
|
/linux-6.3-rc2/include/linux/ |
A D | bpf.h | 79 void (*map_release)(struct bpf_map *map, struct file *map_file); 91 int (*map_update_batch)(struct bpf_map *map, struct file *map_file, 107 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file, 1620 struct file *map_file; member 1908 int generic_map_update_batch(struct bpf_map *map, struct file *map_file, 2105 int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file, 2108 int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
|