Home
last modified time | relevance | path

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

/linux-6.1.9/fs/cifs/
Dsess.c1288 __u16 bytes_remaining; in sess_auth_ntlmv2() local
1359 bytes_remaining = get_bcc(smb_buf); in sess_auth_ntlmv2()
1363 if (bytes_remaining == 0) { in sess_auth_ntlmv2()
1369 --bytes_remaining; in sess_auth_ntlmv2()
1371 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1374 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses, in sess_auth_ntlmv2()
1398 __u16 bytes_remaining; in sess_auth_kerberos() local
1485 bytes_remaining = get_bcc(smb_buf); in sess_auth_kerberos()
1489 if (blob_len > bytes_remaining) { in sess_auth_kerberos()
1496 bytes_remaining -= blob_len; in sess_auth_kerberos()
[all …]
/linux-6.1.9/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-6.1.9/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-6.1.9/net/ethtool/
Dioctl.c1524 u32 bytes_remaining; in ethtool_get_any_eeprom() local
1543 bytes_remaining = eeprom.len; in ethtool_get_any_eeprom()
1544 while (bytes_remaining > 0) { in ethtool_get_any_eeprom()
1545 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_get_any_eeprom()
1560 bytes_remaining -= eeprom.len; in ethtool_get_any_eeprom()
1589 u32 bytes_remaining; in ethtool_set_eeprom() local
1612 bytes_remaining = eeprom.len; in ethtool_set_eeprom()
1613 while (bytes_remaining > 0) { in ethtool_set_eeprom()
1614 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); in ethtool_set_eeprom()
1625 bytes_remaining -= eeprom.len; in ethtool_set_eeprom()
/linux-6.1.9/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.1.9/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()