/linux-5.19.10/drivers/net/ethernet/mellanox/mlx4/ |
D | sense.c | 65 enum mlx4_port_type *stype, in mlx4_do_sense_ports() argument 73 stype[i - 1] = 0; in mlx4_do_sense_ports() 76 err = mlx4_SENSE_PORT(dev, i, &stype[i - 1]); in mlx4_do_sense_ports() 78 stype[i - 1] = defaults[i - 1]; in mlx4_do_sense_ports() 80 stype[i - 1] = defaults[i - 1]; in mlx4_do_sense_ports() 87 stype[i] = stype[i] ? stype[i] : defaults[i]; in mlx4_do_sense_ports() 98 enum mlx4_port_type stype[MLX4_MAX_PORTS]; in mlx4_sense_port() local 101 mlx4_do_sense_ports(dev, stype, &dev->caps.port_type[1]); in mlx4_sense_port() 103 if (mlx4_check_port_params(dev, stype)) in mlx4_sense_port() 106 if (mlx4_change_port_types(dev, stype)) in mlx4_sense_port()
|
/linux-5.19.10/sound/soc/au1x/ |
D | psc-i2s.c | 41 #define I2SSTAT_BUSY(stype) \ argument 42 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_I2SSTAT_TB : PSC_I2SSTAT_RB) 43 #define I2SPCR_START(stype) \ argument 44 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_I2SPCR_TS : PSC_I2SPCR_RS) 45 #define I2SPCR_STOP(stype) \ argument 46 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_I2SPCR_TP : PSC_I2SPCR_RP) 47 #define I2SPCR_CLRFIFO(stype) \ argument 48 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_I2SPCR_TC : PSC_I2SPCR_RC) 179 static int au1xpsc_i2s_start(struct au1xpsc_audio_data *pscdata, int stype) in au1xpsc_i2s_start() argument 194 __raw_writel(I2SPCR_CLRFIFO(stype), I2S_PCR(pscdata)); in au1xpsc_i2s_start() [all …]
|
D | psc-ac97.c | 39 #define AC97PCR_START(stype) \ argument 40 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TS : PSC_AC97PCR_RS) 41 #define AC97PCR_STOP(stype) \ argument 42 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TP : PSC_AC97PCR_RP) 43 #define AC97PCR_CLRFIFO(stype) \ argument 44 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97PCR_TC : PSC_AC97PCR_RC) 46 #define AC97STAT_BUSY(stype) \ argument 47 ((stype) == SNDRV_PCM_STREAM_PLAYBACK ? PSC_AC97STAT_TB : PSC_AC97STAT_RB) 213 int chans, t, stype = substream->stream; in au1xpsc_ac97_hw_params() local 233 if (stype == SNDRV_PCM_STREAM_PLAYBACK) { in au1xpsc_ac97_hw_params() [all …]
|
D | dbdma2.c | 149 int stype, int msbits) in au1x_pcm_dbdma_realloc() argument 161 if (stype == SNDRV_PCM_STREAM_CAPTURE) in au1x_pcm_dbdma_realloc() 198 int stype, ret; in au1xpsc_pcm_hw_params() local 200 stype = substream->stream; in au1xpsc_pcm_hw_params() 210 params_periods(params), params_period_bytes(params), stype); in au1xpsc_pcm_hw_params() 212 ret = au1x_pcm_dbdma_realloc(pcd, stype, params->msbits); in au1xpsc_pcm_hw_params() 282 int stype = substream->stream, *dmaids; in au1xpsc_pcm_open() local 288 pcd->ddma_id = dmaids[stype]; in au1xpsc_pcm_open()
|
D | i2sc.c | 140 int stype = SUBSTREAM_TYPE(substream); in au1xi2s_trigger() local 148 ctx->cfg |= (stype == PCM_TX) ? CFG_TN : CFG_RN; in au1xi2s_trigger() 153 ctx->cfg &= ~((stype == PCM_TX) ? CFG_TN : CFG_RN); in au1xi2s_trigger()
|
D | dma.c | 221 int stype = substream->stream; in alchemy_pcm_close() local 223 ctx->stream[stype].substream = NULL; in alchemy_pcm_close() 224 free_au1000_dma(ctx->stream[stype].dma); in alchemy_pcm_close()
|
/linux-5.19.10/kernel/bpf/ |
D | local_storage.c | 418 enum bpf_cgroup_storage_type stype; in cgroup_storage_seq_show_elem() local 430 stype = cgroup_storage_type(map); in cgroup_storage_seq_show_elem() 431 if (stype == BPF_CGROUP_STORAGE_SHARED) { in cgroup_storage_seq_show_elem() 466 enum bpf_cgroup_storage_type stype = cgroup_storage_type(_map); in bpf_cgroup_storage_assign() local 468 if (aux->cgroup_storage[stype] && in bpf_cgroup_storage_assign() 469 aux->cgroup_storage[stype] != _map) in bpf_cgroup_storage_assign() 472 aux->cgroup_storage[stype] = _map; in bpf_cgroup_storage_assign() 494 enum bpf_cgroup_storage_type stype) in bpf_cgroup_storage_alloc() argument 502 map = prog->aux->cgroup_storage[stype]; in bpf_cgroup_storage_alloc() 513 if (stype == BPF_CGROUP_STORAGE_SHARED) { in bpf_cgroup_storage_alloc() [all …]
|
D | cgroup.c | 72 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_free() local 74 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_free() 75 bpf_cgroup_storage_free(storages[stype]); in bpf_cgroup_storages_free() 84 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_alloc() local 91 for_each_cgroup_storage_type(stype) { in bpf_cgroup_storages_alloc() 92 map = prog->aux->cgroup_storage[stype]; in bpf_cgroup_storages_alloc() 96 storages[stype] = cgroup_storage_lookup((void *)map, &key, false); in bpf_cgroup_storages_alloc() 97 if (storages[stype]) in bpf_cgroup_storages_alloc() 100 storages[stype] = bpf_cgroup_storage_alloc(prog, stype); in bpf_cgroup_storages_alloc() 101 if (IS_ERR(storages[stype])) { in bpf_cgroup_storages_alloc() [all …]
|
/linux-5.19.10/arch/sparc/kernel/ |
D | viohs.c | 41 static void init_tag(struct vio_msg_tag *tag, u8 type, u8 stype, u16 stype_env) in init_tag() argument 44 tag->stype = stype; in init_tag() 166 pkt->type, pkt->stype, pkt->stype_env, pkt->sid); in process_unknown() 275 pkt->tag.stype = VIO_SUBTYPE_NACK; in process_ver_info() 281 pkt->tag.stype = VIO_SUBTYPE_NACK; in process_ver_info() 295 pkt->tag.stype = VIO_SUBTYPE_ACK; in process_ver_info() 320 pkt->tag.stype = VIO_SUBTYPE_NACK; in process_ver_ack() 366 switch (pkt->tag.stype) { in process_ver() 476 pkt->tag.stype = VIO_SUBTYPE_ACK; in process_dreg_info() 493 pkt->tag.stype = VIO_SUBTYPE_NACK; in process_dreg_info() [all …]
|
D | ldc.c | 49 u8 stype; member 350 u8 stype, u8 ctrl, in handshake_compose_ctrl() argument 359 p->stype = stype; in handshake_compose_ctrl() 497 p->stype = LDC_NACK; in send_data_nack() 654 switch (p->stype) { in process_version() 673 p->stype, p->seqid, p->env); in process_rts() 675 if (p->stype != LDC_INFO || in process_rts() 693 p->stype, p->seqid, p->env); in process_rtr() 695 if (p->stype != LDC_INFO || in process_rtr() 716 p->stype, p->seqid, p->env, p->u.r.ackid); in process_rdx() [all …]
|
/linux-5.19.10/drivers/net/wireless/intersil/hostap/ |
D | hostap_80211_rx.c | 393 int stype) in hostap_rx_sta_beacon() argument 473 u16 stype) in hostap_rx_frame_mgmt() argument 479 if (stype == IEEE80211_STYPE_BEACON && in hostap_rx_frame_mgmt() 504 skb->dev->name, type >> 2, stype >> 4); in hostap_rx_frame_mgmt() 511 (stype == IEEE80211_STYPE_BEACON || in hostap_rx_frame_mgmt() 512 stype == IEEE80211_STYPE_PROBE_RESP)) { in hostap_rx_frame_mgmt() 513 hostap_rx_sta_beacon(local, skb, stype); in hostap_rx_frame_mgmt() 516 (stype == IEEE80211_STYPE_ASSOC_RESP || in hostap_rx_frame_mgmt() 517 stype == IEEE80211_STYPE_REASSOC_RESP)) { in hostap_rx_frame_mgmt() 525 skb->dev->name, type >> 2, stype >> 4); in hostap_rx_frame_mgmt() [all …]
|
D | hostap_ap.c | 2143 u16 fc, type, stype; in handle_ap_item() local 2151 stype = fc & IEEE80211_FCTL_STYPE; in handle_ap_item() 2159 if (stype == IEEE80211_STYPE_NULLFUNC) { in handle_ap_item() 2178 stype == IEEE80211_STYPE_NULLFUNC) in handle_ap_item() 2185 if (type == IEEE80211_FTYPE_MGMT && stype == IEEE80211_STYPE_BEACON) { in handle_ap_item() 2191 if (type == IEEE80211_FTYPE_CTL && stype == IEEE80211_STYPE_PSPOLL) { in handle_ap_item() 2198 "subtype=0x%02x\n", type, stype); in handle_ap_item() 2220 switch (stype) { in handle_ap_item() 2247 stype >> 4); in handle_ap_item() 2876 int pwrmgt, int type, int stype) in hostap_update_sta_ps2() argument [all …]
|
/linux-5.19.10/include/linux/ |
D | bpf-cgroup.h | 68 #define for_each_cgroup_storage_type(stype) \ argument 69 for (stype = 0; stype < MAX_BPF_CGROUP_STORAGE_TYPE; stype++) 157 enum bpf_cgroup_storage_type stype); 443 struct bpf_prog *prog, enum bpf_cgroup_storage_type stype) { return NULL; } in bpf_cgroup_storage_alloc() argument 485 #define for_each_cgroup_storage_type(stype) for (; false; ) argument
|
/linux-5.19.10/drivers/tty/ |
D | vcc.c | 88 for (i = 0; i < pkt.tag.stype; i++) \ 334 pkt.tag.type, pkt.tag.stype, in vcc_ldc_read() 340 vcc_rx(tty, pkt.data, pkt.tag.stype); in vcc_ldc_read() 343 pkt.tag.type, pkt.tag.stype, in vcc_ldc_read() 402 pkt->tag.stype = tosend; in vcc_tx_timer() 499 pkt.tag.stype = 0; in vcc_send_ctl() 837 pkt->tag.stype = tosend; in vcc_write() 840 pkt->tag.stype, pkt->tag.stype_env, pkt->tag.sid); in vcc_write()
|
/linux-5.19.10/fs/affs/ |
D | amigaffs.h | 73 __be32 stype; member 102 __be32 stype; member
|
D | inode.c | 92 switch (be32_to_cpu(tail->stype)) { in affs_iget() 98 if (be32_to_cpu(tail->stype) == ST_USERDIR || in affs_iget() 189 if (tail->stype == cpu_to_be32(ST_ROOT)) { in affs_write_inode() 388 AFFS_TAIL(sb, bh)->stype = cpu_to_be32(type); in affs_add_entry()
|
/linux-5.19.10/drivers/net/wireless/intel/ipw2x00/ |
D | libipw_rx.c | 168 u16 stype) in libipw_rx_frame_mgmt() argument 180 if (stype == WLAN_FC_STYPE_BEACON && in libipw_rx_frame_mgmt() 202 skb->dev->name, type, stype); in libipw_rx_frame_mgmt() 334 u16 fc, type, stype, sc; in libipw_rx() local 360 stype = WLAN_FC_GET_STYPE(fc); in libipw_rx() 465 if (type == WLAN_FC_TYPE_MGMT && stype == WLAN_FC_STYPE_AUTH && in libipw_rx() 475 if (libipw_rx_frame_mgmt(ieee, skb, rx_stats, type, stype)) in libipw_rx() 553 stype &= ~IEEE80211_STYPE_QOS_DATA; in libipw_rx() 555 if (stype != IEEE80211_STYPE_DATA && in libipw_rx() 556 stype != IEEE80211_STYPE_DATA_CFACK && in libipw_rx() [all …]
|
/linux-5.19.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | fweh.h | 326 struct sk_buff *skb, u16 stype, in brcmf_fweh_process_skb() argument 342 if (unlikely(stype)) { in brcmf_fweh_process_skb() 344 if (subtype != stype) in brcmf_fweh_process_skb()
|
/linux-5.19.10/drivers/net/ethernet/sun/ |
D | sunvnet_common.c | 58 pkt->type, pkt->stype, pkt->stype_env, pkt->sid); in vnet_handle_unknown() 82 pkt.tag.stype = VIO_SUBTYPE_INFO; in sunvnet_send_attr_common() 203 pkt->tag.stype = VIO_SUBTYPE_NACK; in handle_attr_info() 219 pkt->tag.stype = VIO_SUBTYPE_ACK; in handle_attr_info() 244 switch (pkt->tag.stype) { in sunvnet_handle_attr_common() 475 .stype = VIO_SUBTYPE_ACK, in vnet_send_ack() 745 if (pkt->tag.stype != VIO_SUBTYPE_ACK) in handle_mcast() 749 pkt->tag.stype, in handle_mcast() 848 pkt->tag.stype = VIO_SUBTYPE_INFO; in vnet_event_napi() 865 msgbuf.tag.stype, in vnet_event_napi() [all …]
|
/linux-5.19.10/net/mac80211/ |
D | mesh_sync.c | 81 mesh_sync_offset_rx_bcn_presp(struct ieee80211_sub_if_data *sdata, u16 stype, in mesh_sync_offset_rx_bcn_presp() argument 94 if (stype != IEEE80211_STYPE_BEACON) in mesh_sync_offset_rx_bcn_presp()
|
/linux-5.19.10/drivers/block/ |
D | sunvdc.c | 216 pkt->type, pkt->stype, pkt->stype_env, pkt->sid); in vdc_handle_unknown() 232 pkt.tag.stype = VIO_SUBTYPE_INFO; in vdc_send_attr() 253 pkt->tag.stype, pkt->operations, in vdc_handle_attr() 258 if (pkt->tag.stype == VIO_SUBTYPE_ACK) { in vdc_handle_attr() 397 msgbuf.tag.stype, in vdc_event() 405 if (msgbuf.tag.stype == VIO_SUBTYPE_ACK) in vdc_event() 407 else if (msgbuf.tag.stype == VIO_SUBTYPE_NACK) in vdc_event() 431 .stype = VIO_SUBTYPE_INFO, in __vdc_tx_trigger()
|
/linux-5.19.10/drivers/staging/rtl8192e/ |
D | rtllib_rx.c | 208 u16 stype) in rtllib_rx_frame_mgmt() argument 222 rtllib_rx_frame_softmac(ieee, skb, rx_stats, type, stype); in rtllib_rx_frame_mgmt() 919 u8 frag, type, stype; in rtllib_rx_check_duplicate() local 923 stype = WLAN_FC_GET_STYPE(fc); in rtllib_rx_check_duplicate() 932 (stype == RTLLIB_STYPE_BEACON))) { in rtllib_rx_check_duplicate() 989 u8 type, stype; in rtllib_rx_data_filter() local 992 stype = WLAN_FC_GET_STYPE(fc); in rtllib_rx_data_filter() 1015 if (stype != RTLLIB_STYPE_DATA && in rtllib_rx_data_filter() 1016 stype != RTLLIB_STYPE_DATA_CFACK && in rtllib_rx_data_filter() 1017 stype != RTLLIB_STYPE_DATA_CFPOLL && in rtllib_rx_data_filter() [all …]
|
/linux-5.19.10/net/bpf/ |
D | test_run.c | 379 enum bpf_cgroup_storage_type stype; in bpf_test_run() local 382 for_each_cgroup_storage_type(stype) { in bpf_test_run() 383 item.cgroup_storage[stype] = bpf_cgroup_storage_alloc(prog, stype); in bpf_test_run() 384 if (IS_ERR(item.cgroup_storage[stype])) { in bpf_test_run() 385 item.cgroup_storage[stype] = NULL; in bpf_test_run() 386 for_each_cgroup_storage_type(stype) in bpf_test_run() 387 bpf_cgroup_storage_free(item.cgroup_storage[stype]); in bpf_test_run() 407 for_each_cgroup_storage_type(stype) in bpf_test_run() 408 bpf_cgroup_storage_free(item.cgroup_storage[stype]); in bpf_test_run()
|
/linux-5.19.10/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_rx.c | 210 u16 stype) in ieee80211_rx_frame_mgmt() argument 227 ieee80211_rx_frame_softmac(ieee, skb, rx_stats, type, stype); in ieee80211_rx_frame_mgmt() 243 if (stype == WLAN_FC_STYPE_BEACON && in ieee80211_rx_frame_mgmt() 265 type, stype); in ieee80211_rx_frame_mgmt() 887 u16 fc, type, stype, sc; in ieee80211_rx() local 922 stype = WLAN_FC_GET_STYPE(fc); in ieee80211_rx() 1035 if (ieee80211_rx_frame_mgmt(ieee, skb, rx_stats, type, stype)) in ieee80211_rx() 1103 if (stype != IEEE80211_STYPE_DATA && in ieee80211_rx() 1104 stype != IEEE80211_STYPE_DATA_CFACK && in ieee80211_rx() 1105 stype != IEEE80211_STYPE_DATA_CFPOLL && in ieee80211_rx() [all …]
|
/linux-5.19.10/drivers/net/wireless/marvell/mwifiex/ |
D | util.c | 342 u16 stype; in mwifiex_parse_mgmt_packet() local 346 stype = (le16_to_cpu(ieee_hdr->frame_control) & IEEE80211_FCTL_STYPE); in mwifiex_parse_mgmt_packet() 348 switch (stype) { in mwifiex_parse_mgmt_packet() 379 "unknown mgmt frame subtype %#x\n", stype); in mwifiex_parse_mgmt_packet()
|