Home
last modified time | relevance | path

Searched refs:bytes_remaining (Results 1 – 6 of 6) sorted by relevance

/kernel/linux/linux-5.10/fs/cifs/
Dsess.c978 __u16 bytes_remaining; in sess_auth_lanman() local
1047 bytes_remaining = get_bcc(smb_buf); in sess_auth_lanman()
1051 if (bytes_remaining == 0) { in sess_auth_lanman()
1057 --bytes_remaining; in sess_auth_lanman()
1059 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
1062 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_lanman()
1084 __u16 bytes_remaining; in sess_auth_ntlm() local
1157 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlm()
1161 if (bytes_remaining == 0) { in sess_auth_ntlm()
1167 --bytes_remaining; in sess_auth_ntlm()
[all …]
/kernel/linux/linux-5.10/drivers/char/xilinx_hwicap/
Dxilinx_hwicap.c362 u32 bytes_remaining; in hwicap_read() local
409 bytes_remaining = bytes_to_read & 3; in hwicap_read()
430 bytes_remaining); in hwicap_read()
431 drvdata->read_buffer_in_use = bytes_remaining; in hwicap_read()
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/libertas/
Dif_spi.c462 int bytes_remaining; in if_spi_prog_helper_firmware() local
470 bytes_remaining = firmware->size; in if_spi_prog_helper_firmware()
474 while (bytes_remaining > 0) { in if_spi_prog_helper_firmware()
496 min(bytes_remaining, HELPER_FW_LOAD_CHUNK_SZ)); in if_spi_prog_helper_firmware()
511 bytes_remaining -= HELPER_FW_LOAD_CHUNK_SZ; in if_spi_prog_helper_firmware()
/kernel/linux/linux-5.10/net/ethtool/
Dioctl.c1513 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1532 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1533 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1534 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1545 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1574 u32 bytes_remaining; in ethtool_set_eeprom() local
1597 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1598 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1599 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1610 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/kernel/linux/linux-5.10/drivers/i2c/busses/
Di2c-fsi.c273 int bytes_remaining = msg->len - port->xfrd; in fsi_i2c_write_fifo() local
275 bytes_to_write = min(bytes_to_write, bytes_remaining); in fsi_i2c_write_fifo()
/kernel/linux/linux-5.10/drivers/visorbus/
Dvisorchipset.c44 unsigned long bytes_remaining; member
588 ctx->bytes_remaining = phdr->name_length; in parser_name_get()