Home
last modified time | relevance | path

Searched refs:tf (Results 1 – 25 of 109) sorted by relevance

12345

/linux/kernel/trace/
H A Dtrace_fprobe.c216 static bool trace_fprobe_is_return(struct trace_fprobe *tf) in trace_fprobe_is_return() argument
218 return tf->fp.exit_handler != NULL; in trace_fprobe_is_return()
221 static bool trace_fprobe_is_tracepoint(struct trace_fprobe *tf) in trace_fprobe_is_tracepoint() argument
223 return tf->tprobe; in trace_fprobe_is_tracepoint()
226 static const char *trace_fprobe_symbol(struct trace_fprobe *tf) in trace_fprobe_symbol() argument
228 return tf->symbol ? tf->symbol : "unknown"; in trace_fprobe_symbol()
233 struct trace_fprobe *tf = to_trace_fprobe(ev); in trace_fprobe_is_busy() local
235 return trace_probe_is_enabled(&tf->tp); in trace_fprobe_is_busy()
238 static bool trace_fprobe_match_command_head(struct trace_fprobe *tf, in trace_fprobe_match_command_head() argument
246 snprintf(buf, sizeof(buf), "%s", trace_fprobe_symbol(tf)); in trace_fprobe_match_command_head()
[all …]
/linux/drivers/ata/
H A Dsata_promise.h28 static inline unsigned int pdc_pkt_header(struct ata_taskfile *tf, in pdc_pkt_header() argument
38 switch (tf->protocol) { in pdc_pkt_header()
40 if (!(tf->flags & ATA_TFLAG_WRITE)) in pdc_pkt_header()
69 buf[15] = tf->ctl; in pdc_pkt_header()
74 static inline unsigned int pdc_pkt_footer(struct ata_taskfile *tf, u8 *buf, in pdc_pkt_footer() argument
77 if (tf->flags & ATA_TFLAG_DEVICE) { in pdc_pkt_footer()
79 buf[i++] = tf->device; in pdc_pkt_footer()
84 buf[i++] = tf->command; in pdc_pkt_footer()
89 static inline unsigned int pdc_prep_lba28(struct ata_taskfile *tf, u8 *buf, unsigned int i) in pdc_prep_lba28() argument
95 buf[i++] = tf->feature; in pdc_prep_lba28()
[all …]
H A Dlibata-acpi.c33 u8 tf[REGS_PER_GTF]; /* regs. 0x1f1 - 0x1f7 */ member
618 struct ata_taskfile *tf) in ata_acpi_gtf_to_tf() argument
620 ata_tf_init(dev, tf); in ata_acpi_gtf_to_tf()
622 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; in ata_acpi_gtf_to_tf()
623 tf->protocol = ATA_PROT_NODATA; in ata_acpi_gtf_to_tf()
624 tf->error = gtf->tf[0]; /* 0x1f1 */ in ata_acpi_gtf_to_tf()
625 tf->nsect = gtf->tf[1]; /* 0x1f2 */ in ata_acpi_gtf_to_tf()
626 tf->lbal = gtf->tf[2]; /* 0x1f3 */ in ata_acpi_gtf_to_tf()
627 tf->lbam = gtf->tf[3]; /* 0x1f4 */ in ata_acpi_gtf_to_tf()
628 tf->lbah = gtf->tf[4]; /* 0x1f5 */ in ata_acpi_gtf_to_tf()
[all …]
H A Dsata_svw.c159 static void k2_sata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in k2_sata_tf_load() argument
162 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in k2_sata_tf_load()
164 if (tf->ctl != ap->last_ctl) { in k2_sata_tf_load()
165 writeb(tf->ctl, ioaddr->ctl_addr); in k2_sata_tf_load()
166 ap->last_ctl = tf->ctl; in k2_sata_tf_load()
169 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in k2_sata_tf_load()
170 writew(tf->feature | (((u16)tf->hob_feature) << 8), in k2_sata_tf_load()
172 writew(tf->nsect | (((u16)tf->hob_nsect) << 8), in k2_sata_tf_load()
174 writew(tf->lbal | (((u16)tf->hob_lbal) << 8), in k2_sata_tf_load()
176 writew(tf->lbam | (((u16)tf->hob_lbam) << 8), in k2_sata_tf_load()
[all …]
H A Dlibata-scsi.c251 struct ata_taskfile *tf = &qc->result_tf; in ata_scsi_set_passthru_sense_fields() local
279 desc[3] = tf->error; in ata_scsi_set_passthru_sense_fields()
280 desc[5] = tf->nsect; in ata_scsi_set_passthru_sense_fields()
281 desc[7] = tf->lbal; in ata_scsi_set_passthru_sense_fields()
282 desc[9] = tf->lbam; in ata_scsi_set_passthru_sense_fields()
283 desc[11] = tf->lbah; in ata_scsi_set_passthru_sense_fields()
284 desc[12] = tf->device; in ata_scsi_set_passthru_sense_fields()
285 desc[13] = tf->status; in ata_scsi_set_passthru_sense_fields()
291 if (tf->flags & ATA_TFLAG_LBA48) { in ata_scsi_set_passthru_sense_fields()
293 desc[4] = tf->hob_nsect; in ata_scsi_set_passthru_sense_fields()
[all …]
H A Dpata_octeon_cf.c379 static void octeon_cf_tf_read16(struct ata_port *ap, struct ata_taskfile *tf) in octeon_cf_tf_read16() argument
386 tf->error = blob >> 8; in octeon_cf_tf_read16()
389 tf->nsect = blob & 0xff; in octeon_cf_tf_read16()
390 tf->lbal = blob >> 8; in octeon_cf_tf_read16()
393 tf->lbam = blob & 0xff; in octeon_cf_tf_read16()
394 tf->lbah = blob >> 8; in octeon_cf_tf_read16()
397 tf->device = blob & 0xff; in octeon_cf_tf_read16()
398 tf->status = blob >> 8; in octeon_cf_tf_read16()
400 if (tf->flags & ATA_TFLAG_LBA48) { in octeon_cf_tf_read16()
402 iowrite8(tf->ctl | ATA_HOB, ap->ioaddr.ctl_addr); in octeon_cf_tf_read16()
[all …]
H A Dpata_ns87415.c123 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE); in ns87415_bmdma_setup()
140 ap->ops->sff_exec_command(ap, &qc->tf); in ns87415_bmdma_setup()
263 static void ns87560_tf_read(struct ata_port *ap, struct ata_taskfile *tf) in ns87560_tf_read() argument
267 tf->status = ns87560_check_status(ap); in ns87560_tf_read()
268 tf->error = ioread8(ioaddr->error_addr); in ns87560_tf_read()
269 tf->nsect = ioread8(ioaddr->nsect_addr); in ns87560_tf_read()
270 tf->lbal = ioread8(ioaddr->lbal_addr); in ns87560_tf_read()
271 tf->lbam = ioread8(ioaddr->lbam_addr); in ns87560_tf_read()
272 tf->lbah = ioread8(ioaddr->lbah_addr); in ns87560_tf_read()
273 tf->device = ns87560_read_buggy(ioaddr->device_addr); in ns87560_tf_read()
[all …]
H A Dlibata-sff.c342 void ata_sff_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in ata_sff_tf_load() argument
345 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in ata_sff_tf_load()
347 if (tf->ctl != ap->last_ctl) { in ata_sff_tf_load()
349 iowrite8(tf->ctl, ioaddr->ctl_addr); in ata_sff_tf_load()
350 ap->last_ctl = tf->ctl; in ata_sff_tf_load()
354 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in ata_sff_tf_load()
356 iowrite8(tf->hob_feature, ioaddr->feature_addr); in ata_sff_tf_load()
357 iowrite8(tf->hob_nsect, ioaddr->nsect_addr); in ata_sff_tf_load()
358 iowrite8(tf->hob_lbal, ioaddr->lbal_addr); in ata_sff_tf_load()
359 iowrite8(tf->hob_lbam, ioaddr->lbam_addr); in ata_sff_tf_load()
[all …]
H A Dsata_inic162x.c416 qc ? qc->tf.command : 0xff, irq_stat, idma_stat); in inic_host_intr()
464 if (qc->tf.flags & ATA_TFLAG_WRITE) in inic_fill_sg()
467 if (ata_is_dma(qc->tf.protocol)) in inic_fill_sg()
487 bool is_atapi = ata_is_atapi(qc->tf.protocol); in inic_qc_prep()
488 bool is_data = ata_is_data(qc->tf.protocol); in inic_qc_prep()
504 cpb->device = qc->tf.device; in inic_qc_prep()
505 cpb->feature = qc->tf.feature; in inic_qc_prep()
506 cpb->nsect = qc->tf.nsect; in inic_qc_prep()
507 cpb->lbal = qc->tf.lbal; in inic_qc_prep()
508 cpb->lbam = qc->tf.lbam; in inic_qc_prep()
[all …]
H A Dlibata-sata.c151 void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis) in ata_tf_to_fis() argument
158 fis[2] = tf->command; in ata_tf_to_fis()
159 fis[3] = tf->feature; in ata_tf_to_fis()
161 fis[4] = tf->lbal; in ata_tf_to_fis()
162 fis[5] = tf->lbam; in ata_tf_to_fis()
163 fis[6] = tf->lbah; in ata_tf_to_fis()
164 fis[7] = tf->device; in ata_tf_to_fis()
166 fis[8] = tf->hob_lbal; in ata_tf_to_fis()
167 fis[9] = tf->hob_lbam; in ata_tf_to_fis()
168 fis[10] = tf->hob_lbah; in ata_tf_to_fis()
[all …]
H A Dpata_ep93xx.c373 const struct ata_taskfile *tf) in ep93xx_pata_tf_load() argument
376 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in ep93xx_pata_tf_load()
378 if (tf->ctl != ap->last_ctl) { in ep93xx_pata_tf_load()
379 ep93xx_pata_write_reg(drv_data, tf->ctl, IDECTRL_ADDR_CTL); in ep93xx_pata_tf_load()
380 ap->last_ctl = tf->ctl; in ep93xx_pata_tf_load()
384 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in ep93xx_pata_tf_load()
385 ep93xx_pata_write_reg(drv_data, tf->hob_feature, in ep93xx_pata_tf_load()
387 ep93xx_pata_write_reg(drv_data, tf->hob_nsect, in ep93xx_pata_tf_load()
389 ep93xx_pata_write_reg(drv_data, tf->hob_lbal, in ep93xx_pata_tf_load()
391 ep93xx_pata_write_reg(drv_data, tf->hob_lbam, in ep93xx_pata_tf_load()
[all …]
H A Dsata_rcar.c360 const struct ata_taskfile *tf) in sata_rcar_tf_load() argument
363 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in sata_rcar_tf_load()
365 if (tf->ctl != ap->last_ctl) { in sata_rcar_tf_load()
366 iowrite32(tf->ctl, ioaddr->ctl_addr); in sata_rcar_tf_load()
367 ap->last_ctl = tf->ctl; in sata_rcar_tf_load()
371 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in sata_rcar_tf_load()
372 iowrite32(tf->hob_feature, ioaddr->feature_addr); in sata_rcar_tf_load()
373 iowrite32(tf->hob_nsect, ioaddr->nsect_addr); in sata_rcar_tf_load()
374 iowrite32(tf->hob_lbal, ioaddr->lbal_addr); in sata_rcar_tf_load()
375 iowrite32(tf->hob_lbam, ioaddr->lbam_addr); in sata_rcar_tf_load()
[all …]
H A Dsata_sx4.c209 static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
210 static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
331 static inline unsigned int pdc20621_ata_pkt(struct ata_taskfile *tf, in pdc20621_ata_pkt() argument
348 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE))) in pdc20621_ata_pkt()
350 else if (tf->protocol == ATA_PROT_NODATA) in pdc20621_ata_pkt()
360 if (tf->protocol == ATA_PROT_NODATA) in pdc20621_ata_pkt()
378 buf[i++] = tf->ctl; in pdc20621_ata_pkt()
383 static inline void pdc20621_host_pkt(struct ata_taskfile *tf, u8 *buf, in pdc20621_host_pkt() argument
402 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE))) in pdc20621_host_pkt()
446 pdc20621_host_pkt(&qc->tf, &pp->dimm_buf[0], portno); in pdc20621_dma_prep()
[all …]
H A Dpata_via.c389 static void via_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in via_tf_load() argument
393 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in via_tf_load()
396 if (tf->ctl != ap->last_ctl) { in via_tf_load()
397 iowrite8(tf->ctl, ioaddr->ctl_addr); in via_tf_load()
398 ap->last_ctl = tf->ctl; in via_tf_load()
403 if (tf->flags & ATA_TFLAG_DEVICE) { in via_tf_load()
404 iowrite8(tf->device, ioaddr->device_addr); in via_tf_load()
405 vp->cached_device = tf->device; in via_tf_load()
409 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in via_tf_load()
411 iowrite8(tf->hob_feature, ioaddr->feature_addr); in via_tf_load()
[all …]
H A Dlibata-pmp.c42 struct ata_taskfile tf; in sata_pmp_read() local
45 ata_tf_init(pmp_dev, &tf); in sata_pmp_read()
46 tf.command = ATA_CMD_PMP_READ; in sata_pmp_read()
47 tf.protocol = ATA_PROT_NODATA; in sata_pmp_read()
48 tf.flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE | ATA_TFLAG_LBA48; in sata_pmp_read()
49 tf.feature = reg; in sata_pmp_read()
50 tf.device = link->pmp; in sata_pmp_read()
52 err_mask = ata_exec_internal(pmp_dev, &tf, NULL, DMA_NONE, NULL, 0, in sata_pmp_read()
57 *r_val = tf.nsect | tf.lbal << 8 | tf.lbam << 16 | tf.lbah << 24; in sata_pmp_read()
79 struct ata_taskfile tf; in sata_pmp_write() local
[all …]
H A Dpata_pdc202xx_old.c39 const struct ata_taskfile *tf) in pdc202xx_exec_command() argument
41 iowrite8(tf->command, ap->ioaddr.command_addr); in pdc202xx_exec_command()
179 struct ata_taskfile *tf = &qc->tf; in pdc2026x_bmdma_start() local
199 if ((tf->flags & ATA_TFLAG_LBA48) || tf->protocol == ATAPI_PROT_DMA) { in pdc2026x_bmdma_start()
202 if (tf->flags & ATA_TFLAG_WRITE) in pdc2026x_bmdma_start()
229 struct ata_taskfile *tf = &qc->tf; in pdc2026x_bmdma_stop() local
238 if (tf->protocol == ATAPI_PROT_DMA || (tf->flags & ATA_TFLAG_LBA48)) { in pdc2026x_bmdma_stop()
/linux/drivers/target/
H A Dtarget_core_fabric_configfs.c38 static void target_fabric_setup_##_name##_cit(struct target_fabric_configfs *tf) \
40 struct config_item_type *cit = &tf->tf_##_name##_cit; \
45 cit->ct_owner = tf->tf_ops->module; \
50 static void target_fabric_setup_##_name##_cit(struct target_fabric_configfs *tf) \
52 struct config_item_type *cit = &tf->tf_##_name##_cit; \
53 struct configfs_attribute **attrs = tf->tf_ops->tfc_##_name##_attrs; \
58 cit->ct_owner = tf->tf_ops->module; \
272 struct target_fabric_configfs *tf = se_tpg->se_tpg_wwn->wwn_tf; in target_fabric_make_mappedlun() local
309 &tf->tf_tpg_mappedlun_cit); in target_fabric_make_mappedlun()
312 "statistics", &tf->tf_tpg_mappedlun_stat_cit); in target_fabric_make_mappedlun()
[all …]
/linux/drivers/thunderbolt/
H A Ddma_test.c233 struct dma_test_frame *tf = container_of(frame, typeof(*tf), frame); in dma_test_rx_callback() local
234 struct dma_test *dt = tf->dma_test; in dma_test_rx_callback()
237 dma_unmap_single(dma_dev, tf->frame.buffer_phy, DMA_TEST_FRAME_SIZE, in dma_test_rx_callback()
239 kfree(tf->data); in dma_test_rx_callback()
242 kfree(tf); in dma_test_rx_callback()
250 if (tf->frame.flags & RING_DESC_CRC_ERROR) in dma_test_rx_callback()
252 if (tf->frame.flags & RING_DESC_BUFFER_OVERRUN) in dma_test_rx_callback()
255 kfree(tf); in dma_test_rx_callback()
267 struct dma_test_frame *tf; in dma_test_submit_rx() local
270 tf = kzalloc(sizeof(*tf), GFP_KERNEL); in dma_test_submit_rx()
[all …]
/linux/drivers/gpu/drm/i915/selftests/
H A Dlib_sw_fence.c58 struct timed_fence *tf = timer_container_of(tf, t, timer); in timed_fence_wake() local
60 i915_sw_fence_commit(&tf->fence); in timed_fence_wake()
63 void timed_fence_init(struct timed_fence *tf, unsigned long expires) in timed_fence_init() argument
65 onstack_fence_init(&tf->fence); in timed_fence_init()
67 timer_setup_on_stack(&tf->timer, timed_fence_wake, 0); in timed_fence_init()
70 mod_timer(&tf->timer, expires); in timed_fence_init()
72 i915_sw_fence_commit(&tf->fence); in timed_fence_init()
75 void timed_fence_fini(struct timed_fence *tf) in timed_fence_fini() argument
77 if (timer_delete_sync(&tf->timer)) in timed_fence_fini()
78 i915_sw_fence_commit(&tf->fence); in timed_fence_fini()
[all …]
/linux/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_color.c659 if (func->tf == TRANSFER_FUNCTION_LINEAR) { in __set_output_tf()
715 if (func->tf == TRANSFER_FUNCTION_LINEAR) { in __set_output_tf_32()
746 enum dc_transfer_func_predefined tf) in amdgpu_dm_set_atomic_regamma() argument
750 if (regamma_size || tf != TRANSFER_FUNCTION_LINEAR) { in amdgpu_dm_set_atomic_regamma()
763 out_tf->tf = tf; in amdgpu_dm_set_atomic_regamma()
773 out_tf->tf = TRANSFER_FUNCTION_LINEAR; in amdgpu_dm_set_atomic_regamma()
852 amdgpu_tf_to_dc_tf(enum amdgpu_transfer_function tf) in amdgpu_tf_to_dc_tf() argument
854 switch (tf) { in amdgpu_tf_to_dc_tf()
881 amdgpu_colorop_tf_to_dc_tf(enum drm_colorop_curve_1d_type tf) in amdgpu_colorop_tf_to_dc_tf() argument
883 switch (tf) { in amdgpu_colorop_tf_to_dc_tf()
[all …]
/linux/include/trace/events/
H A Dlibata.h213 __entry->proto = qc->tf.protocol;
214 __entry->cmd = qc->tf.command;
215 __entry->dev = qc->tf.device;
216 __entry->lbal = qc->tf.lbal;
217 __entry->lbam = qc->tf.lbam;
218 __entry->lbah = qc->tf.lbah;
219 __entry->hob_lbal = qc->tf.hob_lbal;
220 __entry->hob_lbam = qc->tf.hob_lbam;
221 __entry->hob_lbah = qc->tf.hob_lbah;
222 __entry->feature = qc->tf.feature;
[all …]
/linux/drivers/ata/pata_parport/
H A Dpata_parport.c215 const struct ata_taskfile *tf) in pata_parport_tf_load() argument
219 if (tf->ctl != ap->last_ctl) { in pata_parport_tf_load()
220 pi->proto->write_regr(pi, 1, 6, tf->ctl); in pata_parport_tf_load()
221 ap->last_ctl = tf->ctl; in pata_parport_tf_load()
225 if (tf->flags & ATA_TFLAG_ISADDR) { in pata_parport_tf_load()
226 if (tf->flags & ATA_TFLAG_LBA48) { in pata_parport_tf_load()
228 tf->hob_feature); in pata_parport_tf_load()
230 tf->hob_nsect); in pata_parport_tf_load()
232 tf->hob_lbal); in pata_parport_tf_load()
234 tf->hob_lbam); in pata_parport_tf_load()
[all …]
/linux/drivers/net/thunderbolt/
H A Dmain.c329 static inline unsigned int tbnet_frame_size(const struct tbnet_frame *tf) in tbnet_frame_size() argument
331 return tf->frame.size ? : TBNET_FRAME_SIZE; in tbnet_frame_size()
340 struct tbnet_frame *tf = &ring->frames[i]; in tbnet_free_buffers() local
345 if (!tf->page) in tbnet_free_buffers()
358 trace_tbnet_free_frame(i, tf->page, tf->frame.buffer_phy, dir); in tbnet_free_buffers()
360 if (tf->frame.buffer_phy) in tbnet_free_buffers()
361 dma_unmap_page(dma_dev, tf->frame.buffer_phy, size, in tbnet_free_buffers()
364 __free_pages(tf->page, order); in tbnet_free_buffers()
365 tf->page = NULL; in tbnet_free_buffers()
507 struct tbnet_frame *tf = &ring->frames[index]; in tbnet_alloc_rx_buffers() local
[all …]
/linux/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_surface.c210 void dc_transfer_func_retain(struct dc_transfer_func *tf) in dc_transfer_func_retain() argument
212 kref_get(&tf->refcount); in dc_transfer_func_retain()
217 struct dc_transfer_func *tf = container_of(kref, struct dc_transfer_func, refcount); in dc_transfer_func_free() local
218 kvfree(tf); in dc_transfer_func_free()
221 void dc_transfer_func_release(struct dc_transfer_func *tf) in dc_transfer_func_release() argument
223 kref_put(&tf->refcount, dc_transfer_func_free); in dc_transfer_func_release()
228 struct dc_transfer_func *tf = kvzalloc(sizeof(*tf), GFP_KERNEL); in dc_create_transfer_func() local
230 if (tf == NULL) in dc_create_transfer_func()
233 kref_init(&tf->refcount); in dc_create_transfer_func()
235 return tf; in dc_create_transfer_func()
/linux/net/mac80211/
H A Dtdls.c695 struct ieee80211_tdls_data *tf; in ieee80211_tdls_add_chan_switch_req_ies() local
701 tf = (void *)skb->data; in ieee80211_tdls_add_chan_switch_req_ies()
702 tf->u.chan_switch_req.target_channel = in ieee80211_tdls_add_chan_switch_req_ies()
704 tf->u.chan_switch_req.oper_class = oper_class; in ieee80211_tdls_add_chan_switch_req_ies()
797 struct ieee80211_tdls_data *tf; in ieee80211_prep_tdls_encap_data() local
799 tf = skb_put(skb, offsetof(struct ieee80211_tdls_data, u)); in ieee80211_prep_tdls_encap_data()
801 memcpy(tf->da, peer, ETH_ALEN); in ieee80211_prep_tdls_encap_data()
802 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN); in ieee80211_prep_tdls_encap_data()
803 tf->ether_type = cpu_to_be16(ETH_P_TDLS); in ieee80211_prep_tdls_encap_data()
804 tf in ieee80211_prep_tdls_encap_data()
1534 struct ieee80211_tdls_data *tf; ieee80211_tdls_find_sw_timing_ie() local
1752 struct ieee80211_tdls_data *tf = (void *)skb->data; ieee80211_process_tdls_channel_switch_resp() local
1851 struct ieee80211_tdls_data *tf = (void *)skb->data; ieee80211_process_tdls_channel_switch_req() local
2003 struct ieee80211_tdls_data *tf = (void *)skb->data; ieee80211_process_tdls_channel_switch() local
[all...]

12345