Home
last modified time | relevance | path

Searched refs:struct_sz (Results 1 – 7 of 7) sorted by relevance

/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dtest_core_reloc_size.c19 int struct_sz; member
54 out->struct_sz = bpf_core_field_size(in->struct_field); in test_core_size()
H A Dtest_core_reloc_type_based.c89 int struct_sz; member
142 out->struct_sz = bpf_core_type_size(struct a_struct); in test_core_type_based()
H A Dcore_reloc_types.h800 int struct_sz; member
905 int struct_sz; member
/linux-6.15/tools/testing/selftests/bpf/prog_tests/
H A Dcore_reloc.c286 .struct_sz = sizeof(((type *)0)->struct_field), \
788 .struct_sz = sizeof(struct a_struct),
830 .struct_sz = sizeof(struct a_struct___diff),
867 .struct_sz = sizeof(struct a_struct___diff_sz),
887 .struct_sz = sizeof(struct a_struct),
/linux-6.15/drivers/net/ethernet/intel/idpf/
H A Didpf.h36 #define IDPF_NUM_CHUNKS_PER_MSG(struct_sz, chunk_sz) \ argument
37 ((IDPF_CTLQ_MAX_BUF_LEN - (struct_sz)) / (chunk_sz))
/linux-6.15/fs/btrfs/
H A Dqgroup.c3221 size_t struct_sz; in qgroup_auto_inherit() local
3236 struct_sz = struct_size(res, qgroups, num_qgroups); in qgroup_auto_inherit()
3237 if (struct_sz == SIZE_MAX) in qgroup_auto_inherit()
3240 res = kzalloc(struct_sz, GFP_NOFS); in qgroup_auto_inherit()
/linux-6.15/fs/smb/server/
H A Dsmb2pdu.c3885 int struct_sz, rc = 0; in smb2_populate_readdir_entry() local
3899 struct_sz = readdir_info_level_struct_sz(info_level) + conv_len; in smb2_populate_readdir_entry()
3900 next_entry_offset = ALIGN(struct_sz, KSMBD_DIR_INFO_ALIGNMENT); in smb2_populate_readdir_entry()
3901 d_info->last_entry_off_align = next_entry_offset - struct_sz; in smb2_populate_readdir_entry()
4167 int struct_sz; in reserve_populate_dentry() local
4171 struct_sz = readdir_info_level_struct_sz(info_level); in reserve_populate_dentry()
4172 if (struct_sz == -EOPNOTSUPP) in reserve_populate_dentry()
4176 next_entry_offset = ALIGN(struct_sz + conv_len, in reserve_populate_dentry()