Home
last modified time | relevance | path

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

/fs/befs/
Ddatastream.c129 befs_off_t bytes_read = 0; /* bytes readed */ in befs_read_lsymlink() local
134 while (bytes_read < len) { in befs_read_lsymlink()
135 bh = befs_read_datastream(sb, ds, bytes_read, NULL); in befs_read_lsymlink()
138 "starting from %Lu", bytes_read); in befs_read_lsymlink()
140 return bytes_read; in befs_read_lsymlink()
143 plen = ((bytes_read + BEFS_SB(sb)->block_size) < len) ? in befs_read_lsymlink()
144 BEFS_SB(sb)->block_size : len - bytes_read; in befs_read_lsymlink()
145 memcpy(buff + bytes_read, bh->b_data, plen); in befs_read_lsymlink()
147 bytes_read += plen; in befs_read_lsymlink()
150 befs_debug(sb, "<--- befs_read_lsymlink() read %u bytes", bytes_read); in befs_read_lsymlink()
[all …]
/fs/cifs/
Dfile.c1604 unsigned int bytes_read = 0; in cifs_user_read() local
1630 total_read += bytes_read, current_offset += bytes_read) { in cifs_user_read()
1646 &bytes_read, &smb_read_data, in cifs_user_read()
1654 bytes_read)) in cifs_user_read()
1664 if (rc || (bytes_read == 0)) { in cifs_user_read()
1672 cifs_stats_bytes_read(pTcon, bytes_read); in cifs_user_read()
1673 *poffset += bytes_read; in cifs_user_read()
1685 unsigned int bytes_read = 0; in cifs_read() local
1710 total_read += bytes_read, current_offset += bytes_read) { in cifs_read()
1731 &bytes_read, &current_offset, in cifs_read()
[all …]
Dcifsglob.h287 __u64 bytes_read; member
411 tcon->bytes_read += bytes; in cifs_stats_bytes_read()
Dinode.c317 unsigned int bytes_read; local
340 &bytes_read, &pbuf, &buf_type);
341 if ((rc == 0) && (bytes_read >= 8)) {
345 if (bytes_read == 24) {
356 if (bytes_read == 24) {
Dcifs_debug.c339 (long long)(tcon->bytes_read)); in cifs_stats_proc_show()
/fs/ecryptfs/
Dcrypto.c1087 char *page_virt, int *bytes_read) in ecryptfs_process_flags() argument
1102 (*bytes_read) = 4; in ecryptfs_process_flags()
1433 char *virt, int *bytes_read, in parse_header_metadata() argument
1446 (*bytes_read) = (sizeof(__be32) + sizeof(__be16)); in parse_header_metadata()
1490 int bytes_read; in ecryptfs_read_headers_virt() local
1503 &bytes_read); in ecryptfs_read_headers_virt()
1517 offset += bytes_read; in ecryptfs_read_headers_virt()
1520 &bytes_read, validate_header_size); in ecryptfs_read_headers_virt()
1525 offset += bytes_read; in ecryptfs_read_headers_virt()
/fs/ncpfs/
Dncplib_kernel.c959 __u32 offset, __u16 to_read, char *target, int *bytes_read) in ncp_read_kernel() argument
973 *bytes_read = ncp_reply_be16(server, 0); in ncp_read_kernel()
976 memcpy(target, source, *bytes_read); in ncp_read_kernel()
995 __u32 offset, __u16 to_read, char __user *target, int *bytes_read, in ncp_read_bounce() argument
1017 *bytes_read = len; in ncp_read_bounce()