| /linux/drivers/md/ |
| H A D | dm-target.c | 21 static inline struct target_type *__find_target_type(const char *name) in __find_target_type() 23 struct target_type *tt; in __find_target_type() 32 static struct target_type *get_target_type(const char *name) in get_target_type() 34 struct target_type *tt; in get_target_type() 51 struct target_type *dm_get_target_type(const char *name) in dm_get_target_type() 53 struct target_type *tt = get_target_type(name); in dm_get_target_type() 63 void dm_put_target_type(struct target_type *tt) in dm_put_target_type() 70 int dm_target_iterate(void (*iter_func)(struct target_type *tt, in dm_target_iterate() 73 struct target_type *tt; in dm_target_iterate() 83 int dm_register_target(struct target_type *tt) in dm_register_target() [all …]
|
| H A D | dm-unstripe.c | 183 static struct target_type unstripe_target = {
|
| H A D | dm-linear.c | 202 static struct target_type linear_target = {
|
| H A D | dm-switch.c | 557 static struct target_type switch_target = {
|
| H A D | dm-ebs-target.c | 449 static struct target_type ebs_target = {
|
| H A D | dm-delay.c | 452 static struct target_type delay_target = {
|
| H A D | dm-dust.c | 563 static struct target_type dust_target = {
|
| H A D | dm-stripe.c | 478 static struct target_type stripe_target = {
|
| H A D | dm-flakey.c | 691 static struct target_type flakey_target = {
|
| H A D | dm-snap.c | 2732 static struct target_type origin_target = { 2745 static struct target_type snapshot_target = { 2760 static struct target_type merge_target = {
|
| /linux/security/selinux/ss/ |
| H A D | avtab.c | 30 return av_hash((u32)keyp->target_class, (u32)keyp->target_type, in avtab_hash() 71 key1->target_type == key2->target_type && in avtab_node_cmp() 78 key1->target_type < key2->target_type) in avtab_node_cmp() 81 key1->target_type == key2->target_type && in avtab_node_cmp() 352 key.target_type = (u16)val; in avtab_read_item() 353 if (key.target_type != val) { in avtab_read_item() 365 !policydb_type_isvalid(pol, key.target_type) || in avtab_read_item() [all...] |
| H A D | policydb.h | 142 u32 target_type; 141 u32 target_type; global() member
|
| H A D | policydb.c | 459 return key->source_type + (key->target_type << 3) + in rangetr_hash() 472 v = cmp_int(key1->target_type, key2->target_type); in rangetr_cmp() 2009 rt->target_type = le32_to_cpu(buf[1]); in filename_trans_read_helper() 2024 !policydb_type_isvalid(p, rt->target_type) || in filename_trans_read_helper() 3722 buf[1] = cpu_to_le32(rt->target_type); in policydb_write()
|
| /linux/drivers/net/wireless/ath/ath6kl/ |
| H A D | target.h | 336 #define TARG_VTOP(target_type, vaddr) \ argument 337 (((target_type) == TARGET_TYPE_AR6003) ? AR6003_VTOP(vaddr) : \ 338 (((target_type) == TARGET_TYPE_AR6004) ? AR6004_VTOP(vaddr) : 0))
|
| H A D | init.c | 259 address = TARG_VTOP(ar->target_type, address); in ath6kl_set_host_app_area() 264 address = TARG_VTOP(ar->target_type, data); in ath6kl_set_host_app_area() 625 if ((ar->target_type == TARGET_TYPE_AR6003) || in ath6kl_configure_target() 1233 if (ar->target_type == TARGET_TYPE_AR6003 && in ath6kl_upload_board_file() 1239 switch (ar->target_type) { in ath6kl_upload_board_file() 1377 if (ar->target_type != TARGET_TYPE_AR6004) { in ath6kl_upload_firmware() 1447 if (ar->target_type != TARGET_TYPE_AR6003 && in ath6kl_init_upload() 1448 ar->target_type != TARGET_TYPE_AR6004) in ath6kl_init_upload() 1481 if (ar->target_type != TARGET_TYPE_AR6004) { in ath6kl_init_upload() 1598 ar->version.target_ver, ar->target_type, in ath6kl_init_hw_params()
|
| H A D | core.c | 106 ar->target_type = le32_to_cpu(targ_info.type); in ath6kl_core_init() 132 if (ar->target_type == TARGET_TYPE_AR6004 && in ath6kl_core_init()
|
| H A D | core.h | 727 u32 target_type; member 886 if (ar->target_type == TARGET_TYPE_AR6003) in ath6kl_get_hi_item_addr() 888 else if (ar->target_type == TARGET_TYPE_AR6004) in ath6kl_get_hi_item_addr()
|
| H A D | hif.c | 78 address = TARG_VTOP(ar->target_type, address); in ath6kl_hif_dump_fw_crash() 91 regdump_addr = TARG_VTOP(ar->target_type, regdump_addr); in ath6kl_hif_dump_fw_crash()
|
| /linux/drivers/cxl/core/ |
| H A D | hdm.c | 707 !!(cxld->target_type == CXL_DECODER_HOSTONLYMEM), in cxld_set_type() 946 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in cxl_setup_hdm_decoder_from_dvsec() 1022 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in init_hdm_decoder() 1024 cxld->target_type = CXL_DECODER_DEVMEM; in init_hdm_decoder() 1051 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in init_hdm_decoder() 1053 cxld->target_type = CXL_DECODER_DEVMEM; in init_hdm_decoder() 1056 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in init_hdm_decoder() 1060 cxld->target_type == CXL_DECODER_HOSTONLYMEM) { in init_hdm_decoder()
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | dm-init.rst | 31 <table> ::= <start_sector> <num_sectors> <target_type> <target_args> 32 <target_type> ::= "verity" | "linear" | ... (see list below)
|
| /linux/include/uapi/linux/ |
| H A D | dm-ioctl.h | 170 char target_type[DM_MAX_TYPE_NAME]; member
|
| /linux/drivers/acpi/acpica/ |
| H A D | dbobject.c | 277 switch (obj_desc->reference.target_type) { in acpi_db_display_internal_object()
|
| /linux/tools/testing/cxl/test/ |
| H A D | cxl.c | 799 a->target_type = b->target_type; 1013 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in init_disabled_mock_decoder() 1044 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in first_decoder() 1162 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in mock_init_hdm_decoder() 1199 cxld->target_type = CXL_DECODER_HOSTONLYMEM; in mock_init_hdm_decoder()
|
| /linux/drivers/md/dm-pcache/ |
| H A D | dm_pcache.c | 449 static struct target_type dm_pcache_target = {
|
| /linux/Documentation/driver-api/cxl/linux/ |
| H A D | cxl-driver.rst | 313 interleave_granularity modalias start target_type 348 dpa_size mode target_type
|