Home
last modified time | relevance | path

Searched full:subtype (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/Linux-v5.10/Documentation/crypto/
Dasymmetric-keys.rst25 The asymmetric key is given a subtype that defines what sort of data is
30 A completely in-kernel key retention and operation subtype can be defined, but
39 subtype of the key and define the operations that can be done on that key.
70 2) If the criterion string is of the form "<subtype>:<hexdigits>" then the
72 only keys of the specified subtype (e.g. tpm) will be matched. For
78 displayed, along with the subtype::
164 Asymmetric keys have a subtype that defines the set of operations that can be
166 payload. The payload format is entirely at the whim of the subtype.
168 The subtype is selected by the key data parser and the parser must initialise
170 subtype module.
[all …]
/Linux-v5.10/include/keys/
Dasymmetric-subtype.h2 /* Asymmetric public-key cryptography key subtype
21 * Keys of this type declare a subtype that indicates the handlers and
29 /* Describe a key of this subtype for /proc/keys */
32 /* Destroy a key of this subtype */
42 /* Verify the signature on a key of this subtype (optional) */
48 * asymmetric_key_subtype - Get the subtype from an asymmetric key
51 * Retrieves and returns the subtype pointer of the asymmetric key from the
/Linux-v5.10/crypto/asymmetric_keys/
Dsignature.c11 #include <keys/asymmetric-subtype.h>
45 const struct asymmetric_key_subtype *subtype; in query_asymmetric_key() local
53 subtype = asymmetric_key_subtype(key); in query_asymmetric_key()
54 if (!subtype || in query_asymmetric_key()
57 if (!subtype->query) in query_asymmetric_key()
60 ret = subtype->query(params, info); in query_asymmetric_key()
140 const struct asymmetric_key_subtype *subtype; in verify_signature() local
147 subtype = asymmetric_key_subtype(key); in verify_signature()
148 if (!subtype || in verify_signature()
151 if (!subtype->verify_signature) in verify_signature()
[all …]
Dasymmetric_type.c9 #include <keys/asymmetric-subtype.h>
332 const struct asymmetric_key_subtype *subtype = asymmetric_key_subtype(key); in asymmetric_key_describe() local
340 if (subtype) { in asymmetric_key_describe()
342 subtype->describe(key, m); in asymmetric_key_describe()
417 struct asymmetric_key_subtype *subtype = prep->payload.data[asym_subtype]; in asymmetric_key_free_preparse() local
422 if (subtype) { in asymmetric_key_free_preparse()
423 subtype->destroy(prep->payload.data[asym_crypto], in asymmetric_key_free_preparse()
425 module_put(subtype->owner); in asymmetric_key_free_preparse()
436 struct asymmetric_key_subtype *subtype = asymmetric_key_subtype(key); in asymmetric_key_destroy() local
446 if (subtype) { in asymmetric_key_destroy()
[all …]
/Linux-v5.10/drivers/media/pci/saa7164/
Dsaa7164-types.h119 u8 subtype; member
126 u8 subtype; member
143 u8 subtype; member
161 u8 subtype; member
172 u8 subtype; member
250 * bDescriptorSubtype - VS_FORMAT_MPEG2TS descriptor subtype.
266 u8 subtype; member
280 u8 subtype; member
290 u8 subtype; member
328 u8 subtype; member
[all …]
/Linux-v5.10/drivers/thermal/qcom/
Dqcom-spmi-temp-alarm.c69 unsigned int subtype; member
118 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1) in qpnp_tm_get_temp_stage()
142 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1) { in qpnp_tm_update_temp_no_adc()
325 stage = chip->subtype == QPNP_TM_SUBTYPE_GEN1 in qpnp_tm_init()
353 u8 type, subtype; in qpnp_tm_probe() local
397 ret = qpnp_tm_read(chip, QPNP_TM_REG_SUBTYPE, &subtype); in qpnp_tm_probe()
399 dev_err(&pdev->dev, "could not read subtype\n"); in qpnp_tm_probe()
403 if (type != QPNP_TM_TYPE || (subtype != QPNP_TM_SUBTYPE_GEN1 in qpnp_tm_probe()
404 && subtype != QPNP_TM_SUBTYPE_GEN2)) { in qpnp_tm_probe()
405 dev_err(&pdev->dev, "invalid type 0x%02x or subtype 0x%02x\n", in qpnp_tm_probe()
[all …]
/Linux-v5.10/drivers/mfd/
Dqcom-spmi-pmic.c65 unsigned int rev2, minor, major, type, subtype; in pmic_spmi_show_revid() local
76 ret = regmap_read(map, PMIC_SUBTYPE, &subtype); in pmic_spmi_show_revid()
81 if (subtype == (unsigned long)pmic_spmi_id_table[i].data) in pmic_spmi_show_revid()
106 if ((subtype == PM8941_SUBTYPE || subtype == PM8226_SUBTYPE) && in pmic_spmi_show_revid()
110 if (subtype == PM8110_SUBTYPE) in pmic_spmi_show_revid()
113 dev_dbg(dev, "%x: %s v%d.%d\n", subtype, name, major, minor); in pmic_spmi_show_revid()
/Linux-v5.10/net/batman-adv/
Ddistributed-arp-table.h83 * @subtype: the 4addr subtype of the packet to be counted
85 * Updates the ethtool statistics for the received packet if it is a DAT subtype
88 u8 subtype) in batadv_dat_inc_counter() argument
90 switch (subtype) { in batadv_dat_inc_counter()
182 u8 subtype) in batadv_dat_inc_counter() argument
/Linux-v5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
Dfweh.h208 * @subtype: subtype for this packet.
212 * @usr_subtype: subtype for this OUI.
215 __be16 subtype; member
330 u16 subtype, usr_stype; in brcmf_fweh_process_skb() local
341 /* check subtype if needed */ in brcmf_fweh_process_skb()
343 subtype = get_unaligned_be16(&event_packet->hdr.subtype); in brcmf_fweh_process_skb()
344 if (subtype != stype) in brcmf_fweh_process_skb()
/Linux-v5.10/drivers/net/wireless/ath/wil6210/
Dtrace.h159 __field(u8, subtype)
170 __entry->subtype = wil_rxdesc_subtype(d);
175 " type 0x%1x subtype 0x%1x", __entry->index, __entry->len,
177 __entry->seq, __entry->type, __entry->subtype)
191 __field(u8, subtype)
203 __entry->subtype = wil_rx_status_get_fc1(wil, msg);
208 … "compressed %d buff_id %d len %d mid %d cid %d tid %d mcs %d seq 0x%03x type 0x%1x subtype 0x%1x",
211 __entry->seq, __entry->type, __entry->subtype)
/Linux-v5.10/fs/proc/
Dproc_tty.c42 if (p->subtype == SYSTEM_TYPE_TTY) in show_tty_range()
44 else if (p->subtype == SYSTEM_TYPE_SYSCONS) in show_tty_range()
46 else if (p->subtype == SYSTEM_TYPE_CONSOLE) in show_tty_range()
56 if (p->subtype == PTY_TYPE_MASTER) in show_tty_range()
58 else if (p->subtype == PTY_TYPE_SLAVE) in show_tty_range()
64 seq_printf(m, "type:%d.%d", p->type, p->subtype); in show_tty_range()
/Linux-v5.10/arch/powerpc/kernel/
Dmce.c358 const char *level, *sevstr, *subtype, *err_type, *initiator; in machine_check_print_event_info() local
469 subtype = evt->u.ue_error.ue_error_type < in machine_check_print_event_info()
480 subtype = evt->u.slb_error.slb_error_type < in machine_check_print_event_info()
489 subtype = evt->u.erat_error.erat_error_type < in machine_check_print_event_info()
498 subtype = evt->u.tlb_error.tlb_error_type < in machine_check_print_event_info()
507 subtype = evt->u.user_error.user_error_type < in machine_check_print_event_info()
516 subtype = evt->u.ra_error.ra_error_type < in machine_check_print_event_info()
525 subtype = evt->u.link_error.link_error_type < in machine_check_print_event_info()
534 subtype = "Unknown"; in machine_check_print_event_info()
538 subtype = "Unknown"; in machine_check_print_event_info()
[all …]
/Linux-v5.10/include/uapi/linux/
Dwatch_queue.h31 __u32 subtype:8; /* Type-specific subtype (filterable) */ member
72 * subtype -> WATCH_META_REMOVAL_NOTIFICATION
96 * - watch.subtype = enum key_notification_type
/Linux-v5.10/arch/alpha/kernel/
Dgct.c27 wanted && (wanted->type | wanted->subtype); in gct6_find_nodes()
31 if (node->subtype != wanted->subtype) in gct6_find_nodes()
/Linux-v5.10/Documentation/admin-guide/media/
Dimx7.rst114 type V4L2 subdev subtype Unknown flags 0
124 type Node subtype V4L flags 0
130 type V4L2 subdev subtype Unknown flags 0
142 type V4L2 subdev subtype Unknown flags 0
152 type V4L2 subdev subtype Sensor flags 0
/Linux-v5.10/drivers/hwtracing/coresight/
Dcoresight-core.c345 link_subtype = csdev->subtype.link_subtype; in coresight_enable_link()
380 link_subtype = csdev->subtype.link_subtype; in coresight_disable_link()
854 /* sink & correct subtype */ in coresight_is_def_sink_type()
857 (csdev->subtype.sink_subtype >= CORESIGHT_DEV_SUBTYPE_SINK_BUFFER)) in coresight_is_def_sink_type()
888 } else if (new_sink->subtype.sink_subtype > in coresight_select_best_sink()
889 sink->subtype.sink_subtype) { in coresight_select_best_sink()
892 } else if ((new_sink->subtype.sink_subtype == in coresight_select_best_sink()
893 sink->subtype.sink_subtype) && in coresight_select_best_sink()
1025 u32 type, subtype; in coresight_validate_source() local
1028 subtype = csdev->subtype.source_subtype; in coresight_validate_source()
[all …]
/Linux-v5.10/samples/watch_queue/
Dwatch_test.c58 k->key_id, n->subtype, key_subtypes[n->subtype], k->aux); in saw_key_change()
107 p - buffer, n.n.type, n.n.subtype, n.n.info); in consumer()
117 switch (n.n.subtype) { in consumer()
/Linux-v5.10/drivers/gpu/drm/amd/amdkfd/
Dkfd_crat.c424 * @sub_type_hdr - subtype section of crat_image
466 pr_warn("Unknown subtype %d in CRAT\n", in kfd_parse_subtype()
839 /* Fill in subtype header data */ in kfd_fill_cu_for_cpu()
880 /* Fill in subtype header data */ in kfd_fill_mem_info_for_cpu()
930 /* Fill in subtype header data */ in kfd_fill_iolink_info_for_cpu()
1001 /* Fill in Subtype: Compute Unit */ in kfd_create_vcrat_image_cpu()
1013 /* Fill in Subtype: Memory */ in kfd_create_vcrat_image_cpu()
1025 /* Fill in Subtype: IO Link */ in kfd_create_vcrat_image_cpu()
1044 /* TODO: Add cache Subtype for CPU. in kfd_create_vcrat_image_cpu()
1107 /* Fill in subtype header data */ in kfd_fill_gpu_direct_io_link_to_cpu()
[all …]
/Linux-v5.10/Documentation/
Dwatch_queue.rst58 __u32 subtype:8;
62 "type" indicates the source of the notification record and "subtype" indicates
86 subtype.
91 at the discretion is defined by the type and subtype.
284 interest. Bit 0 of subtype_filter[0] corresponds to subtype 0, bit 1 to
285 subtype 1, and so on.
/Linux-v5.10/arch/alpha/include/asm/
Dgct.h10 u8 subtype; member
36 u8 subtype; member
/Linux-v5.10/Documentation/devicetree/bindings/arm/
Dqcom.yaml21 compatible = "qcom,<SoC>[-<soc_version>][-<foundry_id>]-<board>[/<subtype>][-<board_version>]"
64 The 'foundry_id' and 'subtype' elements are one or more digits from 0 to 9.
75 A dragonboard board v0.1 of subtype 1 with an apq8074 SoC version 2, made in
/Linux-v5.10/arch/sh/kernel/cpu/sh4/
DMakefile18 # CPU subtype setup
33 # Additional clocks by subtype
/Linux-v5.10/drivers/media/usb/gspca/
Dsunplus.c34 u8 subtype; member
478 if (sd->subtype == AiptekMiniPenCam13) { in spca504B_SetSizeType()
582 sd->subtype = id->driver_info; in sd_config()
584 if (sd->subtype == AiptekMiniPenCam13) { in sd_config()
591 break; /* (right bridge/subtype) */ in sd_config()
594 sd->subtype = 0; in sd_config()
611 if (sd->subtype == MegaImageVI) /* 320x240 only */ in sd_config()
656 if (sd->subtype == LogitechClickSmart420) in sd_init()
668 if (sd->subtype == AiptekMiniPenCam13) { in sd_init()
724 switch (sd->subtype) { in sd_start()
[all …]
/Linux-v5.10/drivers/pinctrl/qcom/
Dpinctrl-spmi-mpp.c39 /* mpp peripheral type and subtype values */
661 int type, subtype, val, dir; in pmic_mpp_populate() local
674 subtype = pmic_mpp_read(state, pad, PMIC_MPP_REG_SUBTYPE); in pmic_mpp_populate()
675 if (subtype < 0) in pmic_mpp_populate()
676 return subtype; in pmic_mpp_populate()
678 switch (subtype) { in pmic_mpp_populate()
691 subtype, pad->base); in pmic_mpp_populate()
760 if (subtype != PMIC_MPP_SUBTYPE_ULT_4CH_NO_ANA_OUT && in pmic_mpp_populate()
761 subtype != PMIC_MPP_SUBTYPE_ULT_4CH_NO_SINK) { in pmic_mpp_populate()
/Linux-v5.10/drivers/net/ethernet/mellanox/mlx4/
Deq.c155 eqe->subtype == MLX4_PORT_CHANGE_SUBTYPE_DOWN && in mlx4_gen_slave_eqe()
170 eqe->subtype == MLX4_DEV_PMC_SUBTYPE_PORT_INFO) { in mlx4_gen_slave_eqe()
266 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_PKEY_TABLE; in mlx4_gen_pkey_eqe()
283 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_GUID_INFO; in mlx4_gen_guid_change_eqe()
302 eqe.subtype = port_subtype_change; in mlx4_gen_port_state_change_eqe()
439 eqe.subtype = MLX4_DEV_PMC_SUBTYPE_PORT_INFO; in mlx4_gen_slaves_port_mgt_ev()
542 eqe->type, eqe->subtype, in mlx4_eq_int()
572 eqe->type, eqe->subtype, in mlx4_eq_int()
581 eqe->type, eqe->subtype); in mlx4_eq_int()
588 eqe->subtype, slave); in mlx4_eq_int()
[all …]

12345678910>>...14