Home
last modified time | relevance | path

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

/Linux-v5.15/fs/cifs/
Dsess.c944 __u16 bytes_remaining; in sess_auth_ntlmv2() local
1015 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlmv2()
1019 if (bytes_remaining == 0) { in sess_auth_ntlmv2()
1025 --bytes_remaining; in sess_auth_ntlmv2()
1027 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1030 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1053 __u16 bytes_remaining; in sess_auth_kerberos() local
1140 bytes_remaining = get_bcc(smb_buf); in sess_auth_kerberos()
1144 if (blob_len > bytes_remaining) { in sess_auth_kerberos()
1151 bytes_remaining -= blob_len; in sess_auth_kerberos()
[all …]
/Linux-v5.15/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()
/Linux-v5.15/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()
/Linux-v5.15/net/ethtool/
Dioctl.c1514 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1533 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1534 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1535 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1546 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1575 u32 bytes_remaining; in ethtool_set_eeprom() local
1598 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1599 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1600 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1611 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/Linux-v5.15/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()
/Linux-v5.15/fs/orangefs/
Dinode.c259 loff_t bytes_remaining = inode->i_size - readahead_pos(rac); in orangefs_readahead() local
260 loff_t pages_remaining = bytes_remaining / PAGE_SIZE; in orangefs_readahead()
265 new_len = bytes_remaining; in orangefs_readahead()
/Linux-v5.15/drivers/visorbus/
Dvisorchipset.c44 unsigned long bytes_remaining; member
588 ctx->bytes_remaining = phdr->name_length; in parser_name_get()