Home
last modified time | relevance | path

Searched refs:fsd (Results 1 – 4 of 4) sorted by relevance

/linux/arch/riscv/kernel/
A Dfpu.S28 fsd f0, TASK_THREAD_F0_F0(a0)
29 fsd f1, TASK_THREAD_F1_F0(a0)
30 fsd f2, TASK_THREAD_F2_F0(a0)
31 fsd f3, TASK_THREAD_F3_F0(a0)
32 fsd f4, TASK_THREAD_F4_F0(a0)
33 fsd f5, TASK_THREAD_F5_F0(a0)
34 fsd f6, TASK_THREAD_F6_F0(a0)
35 fsd f7, TASK_THREAD_F7_F0(a0)
36 fsd f8, TASK_THREAD_F8_F0(a0)
37 fsd f9, TASK_THREAD_F9_F0(a0)
[all …]
/linux/arch/riscv/kvm/
A Dvcpu_switch.S279 fsd f0, KVM_ARCH_FP_D_F0(a0)
280 fsd f1, KVM_ARCH_FP_D_F1(a0)
281 fsd f2, KVM_ARCH_FP_D_F2(a0)
282 fsd f3, KVM_ARCH_FP_D_F3(a0)
283 fsd f4, KVM_ARCH_FP_D_F4(a0)
284 fsd f5, KVM_ARCH_FP_D_F5(a0)
285 fsd f6, KVM_ARCH_FP_D_F6(a0)
286 fsd f7, KVM_ARCH_FP_D_F7(a0)
287 fsd f8, KVM_ARCH_FP_D_F8(a0)
288 fsd f9, KVM_ARCH_FP_D_F9(a0)
[all …]
/linux/fs/debugfs/
A Dfile.c63 return fsd->real_fops; in debugfs_real_fops()
84 struct debugfs_fsdata *fsd; in debugfs_file_get() local
89 fsd = d_fsd; in debugfs_file_get()
91 fsd = kmalloc(sizeof(*fsd), GFP_KERNEL); in debugfs_file_get()
92 if (!fsd) in debugfs_file_get()
97 refcount_set(&fsd->active_users, 1); in debugfs_file_get()
98 init_completion(&fsd->active_users_drained); in debugfs_file_get()
100 kfree(fsd); in debugfs_file_get()
101 fsd = READ_ONCE(dentry->d_fsdata); in debugfs_file_get()
136 if (refcount_dec_and_test(&fsd->active_users)) in debugfs_file_put()
[all …]
A Dinode.c217 void *fsd = dentry->d_fsdata; in debugfs_release_dentry() local
219 if (!((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)) in debugfs_release_dentry()
690 struct debugfs_fsdata *fsd; in __debugfs_file_removed() local
699 fsd = READ_ONCE(dentry->d_fsdata); in __debugfs_file_removed()
700 if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT) in __debugfs_file_removed()
702 if (!refcount_dec_and_test(&fsd->active_users)) in __debugfs_file_removed()
703 wait_for_completion(&fsd->active_users_drained); in __debugfs_file_removed()

Completed in 12 milliseconds