Symbol: anon_inode_getfd
arch/powerpc/kvm/book3s_64_mmu_hv.c
1956
ret = anon_inode_getfd("kvm-htab", &kvm_htab_fops, ctx, rwflag | O_CLOEXEC);
arch/powerpc/kvm/book3s_64_vio.c
333
ret = anon_inode_getfd("kvm-spapr-tce", &kvm_spapr_tce_fops,
drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
395
ret = anon_inode_getfd(kfd_smi_name, &kfd_smi_ev_fops, (void *)client,
drivers/gpu/drm/i915/i915_perf.c
3903
stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags);
drivers/gpu/drm/xe/xe_eu_stall.c
921
stream_fd = anon_inode_getfd("[xe_eu_stall]", &fops_eu_stall, stream, f_flags);
drivers/gpu/drm/xe/xe_oa.c
1884
stream_fd = anon_inode_getfd("[xe_oa]", &xe_oa_fops, stream, 0);
drivers/hv/mshv_root_main.c
1115
ret = anon_inode_getfd("mshv_vp", &mshv_vp_fops, vp,
drivers/iio/industrialio-buffer.c
2049
fd = anon_inode_getfd("iio:buffer", &iio_buffer_chrdev_fileops,
drivers/iio/industrialio-event.c
212
fd = anon_inode_getfd("iio:event", &iio_event_chrdev_fileops,
drivers/tee/tee_shm.c
606
fd = anon_inode_getfd("tee_shm", &tee_shm_fops, shm, O_RDWR);
fs/anon_inodes.c
309
EXPORT_SYMBOL_GPL(anon_inode_getfd);
fs/fsopen.c
96
fd = anon_inode_getfd("[fscontext]", &fscontext_fops, fc,
fs/notify/inotify/inotify_user.c
711
ret = anon_inode_getfd("inotify", &inotify_fops, group,
fs/xfs/xfs_healthmon.c
1245
ret = anon_inode_getfd("xfs_healthmon", &xfs_healthmon_fops, hm,
include/linux/anon_inodes.h
27
int anon_inode_getfd(const char *name, const struct file_operations *fops,
kernel/bpf/btf.c
8146
return anon_inode_getfd("btf", &btf_fops, btf, O_RDONLY | O_CLOEXEC);
kernel/bpf/syscall.c
1189
return anon_inode_getfd("bpf-map", &bpf_map_fops, map,
kernel/bpf/syscall.c
2534
return anon_inode_getfd("bpf-prog", &bpf_prog_fops, prog,
kernel/bpf/syscall.c
3500
return anon_inode_getfd("bpf-link",
kernel/bpf/syscall.c
6014
fd = anon_inode_getfd("bpf-stats", &bpf_stats_fops, NULL, O_CLOEXEC);
security/landlock/syscalls.c
255
ruleset_fd = anon_inode_getfd("[landlock-ruleset]", &ruleset_fops,
sound/core/timer.c
2208
timer_fd = anon_inode_getfd(utimer->name, &snd_utimer_fops, utimer, O_RDWR | O_CLOEXEC);
virt/kvm/kvm_main.c
4121
return anon_inode_getfd(name, &kvm_vcpu_fops, vcpu, O_RDWR | O_CLOEXEC);
virt/kvm/kvm_main.c
4852
ret = anon_inode_getfd(ops->name, &kvm_device_fops, dev, O_RDWR | O_CLOEXEC);