Home
last modified time | relevance | path

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

/Linux-v6.6/fs/smb/client/
Dsess.c1304 __u16 bytes_remaining; in sess_auth_ntlmv2() local
1375 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlmv2()
1379 if (bytes_remaining == 0) { in sess_auth_ntlmv2()
1385 --bytes_remaining; in sess_auth_ntlmv2()
1387 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1390 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1414 __u16 bytes_remaining; in sess_auth_kerberos() local
1501 bytes_remaining = get_bcc(smb_buf); in sess_auth_kerberos()
1505 if (blob_len > bytes_remaining) { in sess_auth_kerberos()
1512 bytes_remaining -= blob_len; in sess_auth_kerberos()
[all …]
/Linux-v6.6/drivers/char/xilinx_hwicap/
Dxilinx_hwicap.c364 u32 bytes_remaining; in hwicap_read() local
411 bytes_remaining = bytes_to_read & 3; in hwicap_read()
432 bytes_remaining); in hwicap_read()
433 drvdata->read_buffer_in_use = bytes_remaining; in hwicap_read()
/Linux-v6.6/drivers/spi/
Dspi-rzv2m-csi.c199 unsigned int bytes_remaining = csi->buffer_len - bytes_transferred; in rzv2m_csi_calc_current_transfer() local
208 to_transfer = min(CSI_FIFO_HALF_SIZE, bytes_remaining); in rzv2m_csi_calc_current_transfer()
210 to_transfer = min(CSI_FIFO_SIZE_BYTES, bytes_remaining); in rzv2m_csi_calc_current_transfer()
/Linux-v6.6/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-v6.6/net/ethtool/
Dioctl.c1537 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1556 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1557 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1558 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1573 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1602 u32 bytes_remaining; in ethtool_set_eeprom() local
1625 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1626 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1627 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1638 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/Linux-v6.6/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-v6.6/fs/orangefs/
Dinode.c252 loff_t bytes_remaining = inode->i_size - readahead_pos(rac); in orangefs_readahead() local
253 loff_t pages_remaining = bytes_remaining / PAGE_SIZE; in orangefs_readahead()
258 new_len = bytes_remaining; in orangefs_readahead()