Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/hmdfs/
Dhmdfs_dentryfile.c126 struct hmdfs_dentry_info *d_info = hmdfs_d(dentry); in hmdfs_get_root_dentry_type() local
129 switch (d_info->dentry_type) { in hmdfs_get_root_dentry_type()
141 hmdfs_info("Unexpected dentry type %d", d_info->dentry_type); in hmdfs_get_root_dentry_type()
1996 struct hmdfs_dentry_info *d_info = hmdfs_d(dentry); in get_remote_dentry_file() local
2013 mutex_lock(&d_info->cache_pull_lock); in get_remote_dentry_file()
2045 mutex_unlock(&d_info->cache_pull_lock); in get_remote_dentry_file()
2068 struct hmdfs_dentry_info *d_info = hmdfs_d(dentry); in hmdfs_find_cache_item() local
2070 if (!d_info) in hmdfs_find_cache_item()
2073 spin_lock(&d_info->cache_list_lock); in hmdfs_find_cache_item()
2074 list_for_each_entry(item, &(d_info->cache_list_head), list) { in hmdfs_find_cache_item()
[all …]
Ddentry.c20 struct hmdfs_dentry_info *d_info = dentry->d_fsdata; in hmdfs_set_time() local
22 if (d_info) in hmdfs_set_time()
23 d_info->time = time; in hmdfs_set_time()
28 struct hmdfs_dentry_info *d_info = dentry->d_fsdata; in hmdfs_get_time() local
30 if (d_info) in hmdfs_get_time()
31 return (unsigned long)d_info->time; in hmdfs_get_time()
Dhmdfs_dentryfile.h210 struct hmdfs_dentry_info *d_info; member
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gvt/
Dcmd_parser.c641 const struct decode_info *d_info; in get_opcode() local
643 d_info = ring_decode_info[engine->id][CMD_TYPE(cmd)]; in get_opcode()
644 if (d_info == NULL) in get_opcode()
647 return cmd >> (32 - d_info->op_len); in get_opcode()
684 const struct decode_info *d_info; in print_opcode() local
687 d_info = ring_decode_info[engine->id][CMD_TYPE(cmd)]; in print_opcode()
688 if (d_info == NULL) in print_opcode()
692 cmd >> (32 - d_info->op_len), d_info->name); in print_opcode()
694 for (i = 0; i < d_info->nr_sub_op; i++) in print_opcode()
695 pr_err("0x%x ", sub_op_val(cmd, d_info->sub_op[i].hi, in print_opcode()
[all …]