Home
last modified time | relevance | path

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

/linux-6.12.1/fs/smb/client/
Dsess.c1430 __u16 bytes_remaining; in sess_auth_ntlmv2() local
1501 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlmv2()
1505 if (bytes_remaining == 0) { in sess_auth_ntlmv2()
1511 --bytes_remaining; in sess_auth_ntlmv2()
1513 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1516 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1540 __u16 bytes_remaining; in sess_auth_kerberos() local
1627 bytes_remaining = get_bcc(smb_buf); in sess_auth_kerberos()
1631 if (blob_len > bytes_remaining) { in sess_auth_kerberos()
1638 bytes_remaining -= blob_len; in sess_auth_kerberos()
[all …]
/linux-6.12.1/drivers/char/xilinx_hwicap/
Dxilinx_hwicap.c359 u32 bytes_remaining; in hwicap_read() local
406 bytes_remaining = bytes_to_read & 3; in hwicap_read()
427 bytes_remaining); in hwicap_read()
428 drvdata->read_buffer_in_use = bytes_remaining; in hwicap_read()
/linux-6.12.1/drivers/net/wireless/marvell/libertas/
Dif_spi.c459 int bytes_remaining; in if_spi_prog_helper_firmware() local
467 bytes_remaining = firmware->size; in if_spi_prog_helper_firmware()
471 while (bytes_remaining > 0) { in if_spi_prog_helper_firmware()
493 min(bytes_remaining, HELPER_FW_LOAD_CHUNK_SZ)); in if_spi_prog_helper_firmware()
508 bytes_remaining -= HELPER_FW_LOAD_CHUNK_SZ; in if_spi_prog_helper_firmware()
/linux-6.12.1/drivers/spi/
Dspi-rzv2m-csi.c217 unsigned int bytes_remaining = csi->buffer_len - bytes_transferred; in rzv2m_csi_calc_current_transfer() local
226 to_transfer = min(CSI_FIFO_HALF_SIZE, bytes_remaining); in rzv2m_csi_calc_current_transfer()
228 to_transfer = min(CSI_FIFO_SIZE_BYTES, bytes_remaining); in rzv2m_csi_calc_current_transfer()
/linux-6.12.1/net/ethtool/
Dioctl.c1819 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1838 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1839 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1840 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1855 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1884 u32 bytes_remaining; in ethtool_set_eeprom() local
1907 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1908 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1909 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1920 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/linux-6.12.1/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-6.12.1/fs/orangefs/
Dinode.c250 loff_t bytes_remaining = inode->i_size - readahead_pos(rac); in orangefs_readahead() local
251 loff_t pages_remaining = bytes_remaining / PAGE_SIZE; in orangefs_readahead()
256 new_len = bytes_remaining; in orangefs_readahead()