Home
last modified time | relevance | path

Searched refs:total_len (Results 1 – 25 of 114) sorted by relevance

12345

/drivers/staging/rtl8188eu/os_dep/
Drtw_android.c52 int total_len; member
77 int total_len) in rtw_android_get_rssi() argument
85 bytes_written += snprintf(&command[bytes_written], total_len, in rtw_android_get_rssi()
94 int total_len) in rtw_android_get_link_speed() argument
100 return snprintf(command, total_len, "LinkSpeed %d", in rtw_android_get_link_speed()
105 int total_len) in rtw_android_get_macaddr() argument
107 return snprintf(command, total_len, "Macaddr = %pM", in rtw_android_get_macaddr()
112 int total_len) in android_set_cntry() argument
123 int total_len) in android_get_p2p_addr() argument
142 if (priv_cmd.total_len < 1) in rtw_android_priv_cmd()
[all …]
/drivers/net/ethernet/netronome/nfp/nfpcore/
Dcrc32.h17 static inline u32 crc32_posix_end(u32 crc, size_t total_len) in crc32_posix_end() argument
20 while (total_len != 0) { in crc32_posix_end()
21 u8 c = total_len & 0xff; in crc32_posix_end()
24 total_len >>= 8; in crc32_posix_end()
/drivers/fsi/
Dfsi-core.c577 size_t total_len, read_len; in fsi_slave_sysfs_raw_read() local
586 for (total_len = 0; total_len < count; total_len += read_len) { in fsi_slave_sysfs_raw_read()
587 read_len = aligned_access_size(off, count - total_len); in fsi_slave_sysfs_raw_read()
589 rc = fsi_slave_read(slave, off, buf + total_len, read_len); in fsi_slave_sysfs_raw_read()
604 size_t total_len, write_len; in fsi_slave_sysfs_raw_write() local
613 for (total_len = 0; total_len < count; total_len += write_len) { in fsi_slave_sysfs_raw_write()
614 write_len = aligned_access_size(off, count - total_len); in fsi_slave_sysfs_raw_write()
616 rc = fsi_slave_write(slave, off, buf + total_len, write_len); in fsi_slave_sysfs_raw_write()
692 size_t total_len, read_len; in cfam_read() local
702 for (total_len = 0; total_len < count; total_len += read_len) { in cfam_read()
[all …]
/drivers/net/wireless/ath/ath6kl/
Dtrace.h121 TP_PROTO(unsigned int addr, int flags, unsigned int total_len,
124 TP_ARGS(addr, flags, total_len, entries, list),
131 __field(size_t, total_len)
133 __dynamic_array(u8, data, total_len)
144 __entry->total_len = total_len;
170 __entry->total_len
/drivers/gpu/drm/udl/
Dudl_main.c37 u8 total_len = 0; in udl_parse_vendor_descriptor() local
44 total_len = usb_get_descriptor(usbdev, 0x5f, /* vendor specific */ in udl_parse_vendor_descriptor()
46 if (total_len > 5) { in udl_parse_vendor_descriptor()
48 total_len, desc); in udl_parse_vendor_descriptor()
50 if ((desc[0] != total_len) || /* descriptor length */ in udl_parse_vendor_descriptor()
54 (desc[4] != total_len - 2)) /* length after type */ in udl_parse_vendor_descriptor()
57 desc_end = desc + total_len; in udl_parse_vendor_descriptor()
/drivers/net/wireless/ath/ath10k/
Dwow.c88 int total_len = old->pkt_offset + old->pattern_len; in ath10k_wow_convert_8023_to_80211() local
138 if (total_len > ETH_HLEN) in ath10k_wow_convert_8023_to_80211()
140 else if (total_len > offsetof(struct ethhdr, h_proto)) in ath10k_wow_convert_8023_to_80211()
141 hdr_80211_end_offset = hdr_len + rfc_len + total_len - ETH_HLEN; in ath10k_wow_convert_8023_to_80211()
142 else if (total_len > ETH_ALEN) in ath10k_wow_convert_8023_to_80211()
143 hdr_80211_end_offset = total_len - ETH_ALEN + in ath10k_wow_convert_8023_to_80211()
146 hdr_80211_end_offset = total_len + in ath10k_wow_convert_8023_to_80211()
158 if (total_len > ETH_HLEN) { in ath10k_wow_convert_8023_to_80211()
162 total_len - ETH_HLEN); in ath10k_wow_convert_8023_to_80211()
165 total_len - ETH_HLEN); in ath10k_wow_convert_8023_to_80211()
[all …]
/drivers/staging/gdm724x/
Dgdm_mux.c147 int total_len; in up_to_host() local
165 total_len = ALIGN(MUX_HEADER_SIZE + payload_size, 4); in up_to_host()
167 if (len - packet_size_sum < total_len) { in up_to_host()
190 packet_size_sum += total_len; in up_to_host()
350 int total_len; in gdm_mux_send() local
362 total_len = ALIGN(MUX_HEADER_SIZE + len, 4); in gdm_mux_send()
364 t = alloc_mux_tx(total_len); in gdm_mux_send()
379 total_len - MUX_HEADER_SIZE - len); in gdm_mux_send()
381 t->len = total_len; in gdm_mux_send()
389 total_len, in gdm_mux_send()
/drivers/net/ppp/
Dpppoe.c836 size_t total_len) in pppoe_sendmsg() argument
862 if (total_len > (dev->mtu + dev->hard_header_len)) in pppoe_sendmsg()
866 skb = sock_wmalloc(sk, hlen + sizeof(*ph) + total_len + in pppoe_sendmsg()
882 ph = skb_put(skb, total_len + sizeof(struct pppoe_hdr)); in pppoe_sendmsg()
885 error = memcpy_from_msg(start, m, total_len); in pppoe_sendmsg()
891 error = total_len; in pppoe_sendmsg()
893 po->pppoe_pa.remote, NULL, total_len); in pppoe_sendmsg()
897 ph->length = htons(total_len); in pppoe_sendmsg()
979 size_t total_len, int flags) in pppoe_recvmsg() argument
996 total_len = min_t(size_t, total_len, skb->len); in pppoe_recvmsg()
[all …]
/drivers/spi/
Dspi-bcm63xx.c331 unsigned int n_transfers = 0, total_len = 0; in bcm63xx_spi_transfer_one() local
345 total_len += t->len; in bcm63xx_spi_transfer_one()
355 total_len > (bs->fifo_size + BCM63XX_SPI_MAX_PREPEND)) || in bcm63xx_spi_transfer_one()
356 (!can_use_prepend && total_len > bs->fifo_size)) { in bcm63xx_spi_transfer_one()
358 total_len, bs->fifo_size); in bcm63xx_spi_transfer_one()
387 m->actual_length += total_len; in bcm63xx_spi_transfer_one()
391 total_len = 0; in bcm63xx_spi_transfer_one()
Dspi-cavium.c132 unsigned int total_len = 0; in octeon_spi_transfer_one_message() local
144 total_len += r; in octeon_spi_transfer_one_message()
148 msg->actual_length = total_len; in octeon_spi_transfer_one_message()
/drivers/scsi/pm8001/
Dpm8001_init.c155 (pm8001_ha->memoryMap.region[i].total_len + in pm8001_free()
266 pm8001_ha->memoryMap.region[AAP1].total_len = PM8001_EVENT_LOG_SIZE; in pm8001_alloc()
272 pm8001_ha->memoryMap.region[IOP].total_len = PM8001_EVENT_LOG_SIZE; in pm8001_alloc()
279 pm8001_ha->memoryMap.region[CI+i].total_len = 4; in pm8001_alloc()
287 pm8001_ha->memoryMap.region[IB+i].total_len = in pm8001_alloc()
294 pm8001_ha->memoryMap.region[IB+i].total_len = in pm8001_alloc()
304 pm8001_ha->memoryMap.region[PI+i].total_len = 4; in pm8001_alloc()
312 pm8001_ha->memoryMap.region[OB+i].total_len = in pm8001_alloc()
320 pm8001_ha->memoryMap.region[OB+i].total_len = in pm8001_alloc()
329 pm8001_ha->memoryMap.region[NVMD].total_len = 4096; in pm8001_alloc()
[all …]
/drivers/net/wireless/broadcom/b43/
Dpio.c493 unsigned int hdrlen, total_len; in b43_pio_tx() local
511 total_len = roundup(skb->len + hdrlen, 4); in b43_pio_tx()
513 if (unlikely(total_len > q->buffer_size)) { in b43_pio_tx()
525 if (total_len > (q->buffer_size - q->buffer_used)) { in b43_pio_tx()
568 unsigned int total_len; in b43_pio_handle_txstatus() local
580 total_len = pack->skb->len + b43_txhdr_size(dev); in b43_pio_handle_txstatus()
581 total_len = roundup(total_len, 4); in b43_pio_handle_txstatus()
582 q->buffer_used -= total_len; in b43_pio_handle_txstatus()
/drivers/infiniband/hw/mlx4/
Dmr.c271 u64 total_len = 0; in mlx4_ib_umem_calc_optimal_mtt_size() local
329 total_len += current_block_len; in mlx4_ib_umem_calc_optimal_mtt_size()
345 total_len += current_block_len; in mlx4_ib_umem_calc_optimal_mtt_size()
347 total_len += (first_block_start & ((1ULL << block_shift) - 1ULL)); in mlx4_ib_umem_calc_optimal_mtt_size()
350 total_len += (last_block_aligned_end - last_block_end); in mlx4_ib_umem_calc_optimal_mtt_size()
352 if (total_len & ((1ULL << block_shift) - 1ULL)) in mlx4_ib_umem_calc_optimal_mtt_size()
354 total_len, block_shift); in mlx4_ib_umem_calc_optimal_mtt_size()
356 *num_of_mtts = total_len >> block_shift; in mlx4_ib_umem_calc_optimal_mtt_size()
/drivers/usb/core/
Dconfig.c980 int length, total_len, num, i, ssac; in usb_get_bos_descriptor() local
999 total_len = le16_to_cpu(bos->wTotalLength); in usb_get_bos_descriptor()
1002 if (total_len < length) in usb_get_bos_descriptor()
1010 buffer = kzalloc(total_len, GFP_KERNEL); in usb_get_bos_descriptor()
1017 ret = usb_get_descriptor(dev, USB_DT_BOS, 0, buffer, total_len); in usb_get_bos_descriptor()
1018 if (ret < total_len) { in usb_get_bos_descriptor()
1026 total_len -= length; in usb_get_bos_descriptor()
1032 if (total_len < sizeof(*cap) || total_len < cap->bLength) { in usb_get_bos_descriptor()
1078 total_len -= length; in usb_get_bos_descriptor()
/drivers/nvme/target/
Dio-cmd-file.c139 size_t len = 0, total_len = 0; in nvmet_file_execute_io() local
158 total_len += req->f.bvec[bv_cnt].bv_len; in nvmet_file_execute_io()
176 if (WARN_ON_ONCE(total_len != req->data_len)) { in nvmet_file_execute_io()
182 ret = total_len; in nvmet_file_execute_io()
193 ret = nvmet_file_submit_bvec(req, pos, bv_cnt, total_len, ki_flags); in nvmet_file_execute_io()
/drivers/dma/ioat/
Dprep.c109 size_t total_len = len; in ioat_dma_prep_memcpy_lock() local
140 desc->len = total_len; in ioat_dma_prep_memcpy_lock()
160 size_t total_len = len; in __ioat_prep_xor_lock() local
224 desc->len = total_len; in __ioat_prep_xor_lock()
349 size_t total_len = len; in __ioat_prep_pq_lock() local
434 desc->len = total_len; in __ioat_prep_pq_lock()
471 size_t total_len = len; in __ioat_prep_pq16_lock() local
548 desc->len = total_len; in __ioat_prep_pq16_lock()
/drivers/dma/
Dat_hdmac.c320 return desc->total_len; in atc_get_bytes_left()
323 ret = desc_first->total_len; in atc_get_bytes_left()
782 desc->total_len = desc->len = len; in atc_prep_dma_interleaved()
858 first->total_len = len; in atc_prep_dma_memcpy()
963 desc->total_len = len; in atc_prep_dma_memset()
989 size_t total_len = 0; in atc_prep_dma_memset_sg() local
1028 total_len += len; in atc_prep_dma_memset_sg()
1040 first->total_len = total_len; in atc_prep_dma_memset_sg()
1080 size_t total_len = 0; in atc_prep_slave_sg() local
1134 total_len += len; in atc_prep_slave_sg()
[all …]
Dbcm2835-dma.c228 size_t *total_len, in bcm2835_dma_create_cb_set_length() argument
249 if (*total_len + control_block->length < period_len) { in bcm2835_dma_create_cb_set_length()
251 *total_len += control_block->length; in bcm2835_dma_create_cb_set_length()
256 control_block->length = period_len - *total_len; in bcm2835_dma_create_cb_set_length()
259 *total_len = 0; in bcm2835_dma_create_cb_set_length()
309 size_t len = buf_len, total_len; in bcm2835_dma_create_cb_chain() local
331 for (frame = 0, total_len = 0; frame < frames; d->frames++, frame++) { in bcm2835_dma_create_cb_chain()
350 len, period_len, &total_len, in bcm2835_dma_create_cb_chain()
/drivers/media/common/siano/
Dsmscoreapi.c1945 u32 total_len; in smscore_gpio_configure() local
1965 total_len = sizeof(struct sms_msg_hdr) + (sizeof(u32) * 6); in smscore_gpio_configure()
1967 buffer = kmalloc(total_len + SMS_DMA_ALIGNMENT, in smscore_gpio_configure()
1977 p_msg->x_msg_header.msg_length = (u16) total_len; in smscore_gpio_configure()
2006 rc = smscore_sendrequest_and_wait(coredev, p_msg, total_len, in smscore_gpio_configure()
2024 u32 total_len; in smscore_gpio_set_level() local
2036 total_len = sizeof(struct sms_msg_hdr) + in smscore_gpio_set_level()
2039 buffer = kmalloc(total_len + SMS_DMA_ALIGNMENT, in smscore_gpio_set_level()
2050 p_msg->x_msg_header.msg_length = (u16) total_len; in smscore_gpio_set_level()
2055 rc = smscore_sendrequest_and_wait(coredev, p_msg, total_len, in smscore_gpio_set_level()
[all …]
/drivers/scsi/qla4xxx/
Dql4_bsg.c208 uint32_t total_len = 0; in qla4xxx_read_nvram() local
230 total_len = offset + len; in qla4xxx_read_nvram()
233 if ((is_qla4010(ha) && total_len > QL4010_NVRAM_SIZE) || in qla4xxx_read_nvram()
235 total_len > QL40X2_NVRAM_SIZE)) { in qla4xxx_read_nvram()
280 uint32_t total_len = 0; in qla4xxx_update_nvram() local
301 total_len = offset + len; in qla4xxx_update_nvram()
304 if ((is_qla4010(ha) && total_len > QL4010_NVRAM_SIZE) || in qla4xxx_update_nvram()
306 total_len > QL40X2_NVRAM_SIZE)) { in qla4xxx_update_nvram()
/drivers/net/wireless/intersil/orinoco/
Dhermes_dld.c257 int total_len = 0; in hermes_blocks_length() local
267 total_len += sizeof(*blk) + len; in hermes_blocks_length()
271 return total_len; in hermes_blocks_length()
/drivers/usb/renesas_usbhs/
Dfifo.c501 int total_len; in usbhsf_pio_try_push() local
528 total_len = len; in usbhsf_pio_try_push()
529 is_short = total_len < maxp; in usbhsf_pio_try_push()
539 buf += total_len - len; in usbhsf_pio_try_push()
554 pkt->actual += total_len; in usbhsf_pio_try_push()
651 int total_len = 0; in usbhsf_pio_try_pop() local
666 total_len = len; in usbhsf_pio_try_pop()
673 pkt->actual += total_len; in usbhsf_pio_try_pop()
676 (total_len < maxp)) { /* short packet */ in usbhsf_pio_try_pop()
710 buf += total_len - len; in usbhsf_pio_try_pop()
/drivers/hid/intel-ish-hid/
Dishtp-hid-client.c65 size_t payload_len, total_len, cur_pos, raw_len; in process_recv() local
76 total_len = data_len; in process_recv()
80 if (cur_pos + sizeof(struct hostif_msg) > total_len) { in process_recv()
95 total_len) { in process_recv()
312 sizeof(struct hostif_msg) < total_len) in process_recv()
318 } while (cur_pos < total_len); in process_recv()
/drivers/vhost/
Dnet.c637 static bool tx_can_batch(struct vhost_virtqueue *vq, size_t total_len) in tx_can_batch() argument
639 return total_len < VHOST_NET_WEIGHT && in tx_can_batch()
770 size_t len, total_len = 0; in handle_tx_copy() local
798 total_len += len; in handle_tx_copy()
821 if (tx_can_batch(vq, total_len)) in handle_tx_copy()
841 } while (likely(!vhost_exceeds_weight(vq, ++sent_pkts, total_len))); in handle_tx_copy()
860 size_t len, total_len = 0; in handle_tx_zerocopy() local
915 total_len += len; in handle_tx_zerocopy()
916 if (tx_can_batch(vq, total_len) && in handle_tx_zerocopy()
943 } while (likely(!vhost_exceeds_weight(vq, ++sent_pkts, total_len))); in handle_tx_zerocopy()
[all …]
/drivers/net/wireless/ti/wlcore/
Dtx.c195 u32 total_len = skb->len + sizeof(struct wl1271_tx_hw_descr) + extra; in wl1271_tx_allocate() local
200 if (buf_offset + total_len > wl->aggr_buf_size) in wl1271_tx_allocate()
210 total_blocks = wlcore_hw_calc_tx_blocks(wl, total_len, spare_blocks); in wl1271_tx_allocate()
213 desc = skb_push(skb, total_len - skb->len); in wl1271_tx_allocate()
242 total_len, total_blocks, id); in wl1271_tx_allocate()
366 u32 total_len; in wl1271_prepare_tx_frame() local
427 total_len = wlcore_calc_packet_alignment(wl, skb->len); in wl1271_prepare_tx_frame()
430 memset(wl->aggr_buf + buf_offset + skb->len, 0, total_len - skb->len); in wl1271_prepare_tx_frame()
436 return total_len; in wl1271_prepare_tx_frame()

12345