/Linux-v6.1/drivers/ata/ |
D | sata_promise.h | 28 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 …]
|
D | libata-acpi.c | 33 u8 tf[REGS_PER_GTF]; /* regs. 0x1f1 - 0x1f7 */ member 543 struct ata_taskfile *tf) in ata_acpi_gtf_to_tf() argument 545 ata_tf_init(dev, tf); in ata_acpi_gtf_to_tf() 547 tf->flags |= ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; in ata_acpi_gtf_to_tf() 548 tf->protocol = ATA_PROT_NODATA; in ata_acpi_gtf_to_tf() 549 tf->error = gtf->tf[0]; /* 0x1f1 */ in ata_acpi_gtf_to_tf() 550 tf->nsect = gtf->tf[1]; /* 0x1f2 */ in ata_acpi_gtf_to_tf() 551 tf->lbal = gtf->tf[2]; /* 0x1f3 */ in ata_acpi_gtf_to_tf() 552 tf->lbam = gtf->tf[3]; /* 0x1f4 */ in ata_acpi_gtf_to_tf() 553 tf->lbah = gtf->tf[4]; /* 0x1f5 */ in ata_acpi_gtf_to_tf() [all …]
|
D | sata_vsc.c | 142 static void vsc_sata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in vsc_sata_tf_load() argument 145 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in vsc_sata_tf_load() 153 if ((tf->ctl & ATA_NIEN) != (ap->last_ctl & ATA_NIEN)) { in vsc_sata_tf_load() 154 ap->last_ctl = tf->ctl; in vsc_sata_tf_load() 155 vsc_intr_mask_update(ap, tf->ctl & ATA_NIEN); in vsc_sata_tf_load() 157 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in vsc_sata_tf_load() 158 writew(tf->feature | (((u16)tf->hob_feature) << 8), in vsc_sata_tf_load() 160 writew(tf->nsect | (((u16)tf->hob_nsect) << 8), in vsc_sata_tf_load() 162 writew(tf->lbal | (((u16)tf->hob_lbal) << 8), in vsc_sata_tf_load() 164 writew(tf->lbam | (((u16)tf->hob_lbam) << 8), in vsc_sata_tf_load() [all …]
|
D | libata-scsi.c | 204 const struct ata_taskfile *tf) in ata_scsi_set_sense_information() argument 211 information = ata_tf_read_block(tf, dev); in ata_scsi_set_sense_information() 705 static void ata_dump_status(struct ata_port *ap, struct ata_taskfile *tf) in ata_dump_status() argument 707 u8 stat = tf->status, err = tf->error; in ata_dump_status() 885 struct ata_taskfile *tf = &qc->result_tf; in ata_gen_passthru_sense() local 898 tf->status & (ATA_BUSY | ATA_DF | ATA_ERR | ATA_DRQ)) { in ata_gen_passthru_sense() 899 ata_to_sense_error(qc->ap->print_id, tf->status, tf->error, in ata_gen_passthru_sense() 928 desc[3] = tf->error; in ata_gen_passthru_sense() 929 desc[5] = tf->nsect; in ata_gen_passthru_sense() 930 desc[7] = tf->lbal; in ata_gen_passthru_sense() [all …]
|
D | sata_svw.c | 158 static void k2_sata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in k2_sata_tf_load() argument 161 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in k2_sata_tf_load() 163 if (tf->ctl != ap->last_ctl) { in k2_sata_tf_load() 164 writeb(tf->ctl, ioaddr->ctl_addr); in k2_sata_tf_load() 165 ap->last_ctl = tf->ctl; in k2_sata_tf_load() 168 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in k2_sata_tf_load() 169 writew(tf->feature | (((u16)tf->hob_feature) << 8), in k2_sata_tf_load() 171 writew(tf->nsect | (((u16)tf->hob_nsect) << 8), in k2_sata_tf_load() 173 writew(tf->lbal | (((u16)tf->hob_lbal) << 8), in k2_sata_tf_load() 175 writew(tf->lbam | (((u16)tf->hob_lbam) << 8), in k2_sata_tf_load() [all …]
|
D | pata_ns87415.c | 123 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 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 …]
|
D | pata_samsung_cf.c | 176 const struct ata_taskfile *tf) in pata_s3c_tf_load() argument 179 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in pata_s3c_tf_load() 181 if (tf->ctl != ap->last_ctl) { in pata_s3c_tf_load() 182 ata_outb(ap->host, tf->ctl, ioaddr->ctl_addr); in pata_s3c_tf_load() 183 ap->last_ctl = tf->ctl; in pata_s3c_tf_load() 187 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in pata_s3c_tf_load() 188 ata_outb(ap->host, tf->hob_feature, ioaddr->feature_addr); in pata_s3c_tf_load() 189 ata_outb(ap->host, tf->hob_nsect, ioaddr->nsect_addr); in pata_s3c_tf_load() 190 ata_outb(ap->host, tf->hob_lbal, ioaddr->lbal_addr); in pata_s3c_tf_load() 191 ata_outb(ap->host, tf->hob_lbam, ioaddr->lbam_addr); in pata_s3c_tf_load() [all …]
|
D | pata_octeon_cf.c | 378 static void octeon_cf_tf_read16(struct ata_port *ap, struct ata_taskfile *tf) in octeon_cf_tf_read16() argument 385 tf->error = blob >> 8; in octeon_cf_tf_read16() 388 tf->nsect = blob & 0xff; in octeon_cf_tf_read16() 389 tf->lbal = blob >> 8; in octeon_cf_tf_read16() 392 tf->lbam = blob & 0xff; in octeon_cf_tf_read16() 393 tf->lbah = blob >> 8; in octeon_cf_tf_read16() 396 tf->device = blob & 0xff; in octeon_cf_tf_read16() 397 tf->status = blob >> 8; in octeon_cf_tf_read16() 399 if (tf->flags & ATA_TFLAG_LBA48) { in octeon_cf_tf_read16() 401 iowrite8(tf->ctl | ATA_HOB, ap->ioaddr.ctl_addr); in octeon_cf_tf_read16() [all …]
|
D | libata-sata.c | 149 void ata_tf_to_fis(const struct ata_taskfile *tf, u8 pmp, int is_cmd, u8 *fis) in ata_tf_to_fis() argument 156 fis[2] = tf->command; in ata_tf_to_fis() 157 fis[3] = tf->feature; in ata_tf_to_fis() 159 fis[4] = tf->lbal; in ata_tf_to_fis() 160 fis[5] = tf->lbam; in ata_tf_to_fis() 161 fis[6] = tf->lbah; in ata_tf_to_fis() 162 fis[7] = tf->device; in ata_tf_to_fis() 164 fis[8] = tf->hob_lbal; in ata_tf_to_fis() 165 fis[9] = tf->hob_lbam; in ata_tf_to_fis() 166 fis[10] = tf->hob_lbah; in ata_tf_to_fis() [all …]
|
D | libata-sff.c | 399 void ata_sff_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in ata_sff_tf_load() argument 402 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in ata_sff_tf_load() 404 if (tf->ctl != ap->last_ctl) { in ata_sff_tf_load() 406 iowrite8(tf->ctl, ioaddr->ctl_addr); in ata_sff_tf_load() 407 ap->last_ctl = tf->ctl; in ata_sff_tf_load() 411 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in ata_sff_tf_load() 413 iowrite8(tf->hob_feature, ioaddr->feature_addr); in ata_sff_tf_load() 414 iowrite8(tf->hob_nsect, ioaddr->nsect_addr); in ata_sff_tf_load() 415 iowrite8(tf->hob_lbal, ioaddr->lbal_addr); in ata_sff_tf_load() 416 iowrite8(tf->hob_lbam, ioaddr->lbam_addr); in ata_sff_tf_load() [all …]
|
D | libata-core.c | 587 static int ata_rwcmd_protocol(struct ata_taskfile *tf, struct ata_device *dev) in ata_rwcmd_protocol() argument 593 fua = (tf->flags & ATA_TFLAG_FUA) ? 4 : 0; in ata_rwcmd_protocol() 594 lba48 = (tf->flags & ATA_TFLAG_LBA48) ? 2 : 0; in ata_rwcmd_protocol() 595 write = (tf->flags & ATA_TFLAG_WRITE) ? 1 : 0; in ata_rwcmd_protocol() 598 tf->protocol = ATA_PROT_PIO; in ata_rwcmd_protocol() 602 tf->protocol = ATA_PROT_PIO; in ata_rwcmd_protocol() 605 tf->protocol = ATA_PROT_DMA; in ata_rwcmd_protocol() 611 tf->command = cmd; in ata_rwcmd_protocol() 632 u64 ata_tf_read_block(const struct ata_taskfile *tf, struct ata_device *dev) in ata_tf_read_block() argument 636 if (tf->flags & ATA_TFLAG_LBA) { in ata_tf_read_block() [all …]
|
D | sata_inic162x.c | 416 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 …]
|
D | pata_ep93xx.c | 374 const struct ata_taskfile *tf) in ep93xx_pata_tf_load() argument 377 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in ep93xx_pata_tf_load() 379 if (tf->ctl != ap->last_ctl) { in ep93xx_pata_tf_load() 380 ep93xx_pata_write_reg(drv_data, tf->ctl, IDECTRL_ADDR_CTL); in ep93xx_pata_tf_load() 381 ap->last_ctl = tf->ctl; in ep93xx_pata_tf_load() 385 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in ep93xx_pata_tf_load() 386 ep93xx_pata_write_reg(drv_data, tf->hob_feature, in ep93xx_pata_tf_load() 388 ep93xx_pata_write_reg(drv_data, tf->hob_nsect, in ep93xx_pata_tf_load() 390 ep93xx_pata_write_reg(drv_data, tf->hob_lbal, in ep93xx_pata_tf_load() 392 ep93xx_pata_write_reg(drv_data, tf->hob_lbam, in ep93xx_pata_tf_load() [all …]
|
D | libata-zpodd.c | 37 struct ata_taskfile tf; in eject_tray() local 44 ata_tf_init(dev, &tf); in eject_tray() 45 tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; in eject_tray() 46 tf.command = ATA_CMD_PACKET; in eject_tray() 47 tf.protocol = ATAPI_PROT_NODATA; in eject_tray() 49 return ata_exec_internal(dev, &tf, cdb, DMA_NONE, NULL, 0, 0); in eject_tray() 58 struct ata_taskfile tf; in zpodd_get_mech_type() local 72 ata_tf_init(dev, &tf); in zpodd_get_mech_type() 73 tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_DEVICE; in zpodd_get_mech_type() 74 tf.command = ATA_CMD_PACKET; in zpodd_get_mech_type() [all …]
|
D | sata_rcar.c | 360 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 …]
|
D | pata_via.c | 390 static void via_tf_load(struct ata_port *ap, const struct ata_taskfile *tf) in via_tf_load() argument 394 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR; in via_tf_load() 397 if (tf->ctl != ap->last_ctl) { in via_tf_load() 398 iowrite8(tf->ctl, ioaddr->ctl_addr); in via_tf_load() 399 ap->last_ctl = tf->ctl; in via_tf_load() 404 if (tf->flags & ATA_TFLAG_DEVICE) { in via_tf_load() 405 iowrite8(tf->device, ioaddr->device_addr); in via_tf_load() 406 vp->cached_device = tf->device; in via_tf_load() 410 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) { in via_tf_load() 412 iowrite8(tf->hob_feature, ioaddr->feature_addr); in via_tf_load() [all …]
|
D | sata_sx4.c | 209 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); 332 static inline unsigned int pdc20621_ata_pkt(struct ata_taskfile *tf, in pdc20621_ata_pkt() argument 349 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE))) in pdc20621_ata_pkt() 351 else if (tf->protocol == ATA_PROT_NODATA) in pdc20621_ata_pkt() 361 if (tf->protocol == ATA_PROT_NODATA) in pdc20621_ata_pkt() 379 buf[i++] = tf->ctl; in pdc20621_ata_pkt() 384 static inline void pdc20621_host_pkt(struct ata_taskfile *tf, u8 *buf, in pdc20621_host_pkt() argument 403 if ((tf->protocol == ATA_PROT_DMA) && (!(tf->flags & ATA_TFLAG_WRITE))) in pdc20621_host_pkt() 447 pdc20621_host_pkt(&qc->tf, &pp->dimm_buf[0], portno); in pdc20621_dma_prep() [all …]
|
D | libata-pmp.c | 42 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 …]
|
/Linux-v6.1/drivers/target/ |
D | target_core_fabric_configfs.c | 37 static void target_fabric_setup_##_name##_cit(struct target_fabric_configfs *tf) \ 39 struct config_item_type *cit = &tf->tf_##_name##_cit; \ 44 cit->ct_owner = tf->tf_ops->module; \ 49 static void target_fabric_setup_##_name##_cit(struct target_fabric_configfs *tf) \ 51 struct config_item_type *cit = &tf->tf_##_name##_cit; \ 52 struct configfs_attribute **attrs = tf->tf_ops->tfc_##_name##_attrs; \ 57 cit->ct_owner = tf->tf_ops->module; \ 271 struct target_fabric_configfs *tf = se_tpg->se_tpg_wwn->wwn_tf; in target_fabric_make_mappedlun() local 308 &tf->tf_tpg_mappedlun_cit); in target_fabric_make_mappedlun() 311 "statistics", &tf->tf_tpg_mappedlun_stat_cit); in target_fabric_make_mappedlun() [all …]
|
/Linux-v6.1/drivers/gpu/drm/i915/selftests/ |
D | lib_sw_fence.c | 58 struct timed_fence *tf = from_timer(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 (del_timer_sync(&tf->timer)) in timed_fence_fini() 78 i915_sw_fence_commit(&tf->fence); in timed_fence_fini() [all …]
|
/Linux-v6.1/drivers/thunderbolt/ |
D | dma_test.c | 233 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-v6.1/include/trace/events/ |
D | libata.h | 213 __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-v6.1/drivers/gpu/drm/amd/display/dc/core/ |
D | dc_surface.c | 223 void dc_transfer_func_retain(struct dc_transfer_func *tf) in dc_transfer_func_retain() argument 225 kref_get(&tf->refcount); in dc_transfer_func_retain() 230 struct dc_transfer_func *tf = container_of(kref, struct dc_transfer_func, refcount); in dc_transfer_func_free() local 231 kvfree(tf); in dc_transfer_func_free() 234 void dc_transfer_func_release(struct dc_transfer_func *tf) in dc_transfer_func_release() argument 236 kref_put(&tf->refcount, dc_transfer_func_free); in dc_transfer_func_release() 241 struct dc_transfer_func *tf = kvzalloc(sizeof(*tf), GFP_KERNEL); in dc_create_transfer_func() local 243 if (tf == NULL) in dc_create_transfer_func() 246 kref_init(&tf->refcount); in dc_create_transfer_func() 248 return tf; in dc_create_transfer_func()
|
/Linux-v6.1/net/mac80211/ |
D | tdls.c | 650 struct ieee80211_tdls_data *tf; in ieee80211_tdls_add_chan_switch_req_ies() local 656 tf = (void *)skb->data; in ieee80211_tdls_add_chan_switch_req_ies() 657 tf->u.chan_switch_req.target_channel = in ieee80211_tdls_add_chan_switch_req_ies() 659 tf->u.chan_switch_req.oper_class = oper_class; in ieee80211_tdls_add_chan_switch_req_ies() 749 struct ieee80211_tdls_data *tf; in ieee80211_prep_tdls_encap_data() local 751 tf = skb_put(skb, offsetof(struct ieee80211_tdls_data, u)); in ieee80211_prep_tdls_encap_data() 753 memcpy(tf->da, peer, ETH_ALEN); in ieee80211_prep_tdls_encap_data() 754 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN); in ieee80211_prep_tdls_encap_data() 755 tf->ether_type = cpu_to_be16(ETH_P_TDLS); in ieee80211_prep_tdls_encap_data() 756 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE; in ieee80211_prep_tdls_encap_data() [all …]
|
/Linux-v6.1/drivers/net/ |
D | thunderbolt.c | 323 static inline unsigned int tbnet_frame_size(const struct tbnet_frame *tf) in tbnet_frame_size() argument 325 return tf->frame.size ? : TBNET_FRAME_SIZE; in tbnet_frame_size() 334 struct tbnet_frame *tf = &ring->frames[i]; in tbnet_free_buffers() local 339 if (!tf->page) in tbnet_free_buffers() 352 if (tf->frame.buffer_phy) in tbnet_free_buffers() 353 dma_unmap_page(dma_dev, tf->frame.buffer_phy, size, in tbnet_free_buffers() 356 __free_pages(tf->page, order); in tbnet_free_buffers() 357 tf->page = NULL; in tbnet_free_buffers() 489 struct tbnet_frame *tf = &ring->frames[index]; in tbnet_alloc_rx_buffers() local 492 if (tf->page) in tbnet_alloc_rx_buffers() [all …]
|