Searched refs:zlen (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/fs/ntfs3/ |
D | fsntfs.c | 363 size_t alcn, zlen, zeroes, zlcn, zlen2, ztrim, new_zlen; in ntfs_look_for_free_space() local 368 zlen = wnd_zone_len(wnd); in ntfs_look_for_free_space() 370 if (!zlen) { in ntfs_look_for_free_space() 375 zlen = wnd_zone_len(wnd); in ntfs_look_for_free_space() 378 if (!zlen) { in ntfs_look_for_free_space() 385 alen = min_t(CLST, len, zlen); in ntfs_look_for_free_space() 387 wnd_zone_set(wnd, lcn + alen, zlen - alen); in ntfs_look_for_free_space() 411 zlen = wnd_zone_len(wnd); in ntfs_look_for_free_space() 415 if (len > zeroes + zlen || zlen <= NTFS_MIN_MFT_ZONE) { in ntfs_look_for_free_space() 422 zlen2 = zlen >> 1; in ntfs_look_for_free_space() [all …]
|
D | bitmap.c | 636 size_t zlen = wnd->zone_end - wnd->zone_bit; in wnd_rescan() local 639 wnd_zone_set(wnd, wnd->zone_bit, zlen); in wnd_rescan() 1391 size_t zlen = wnd->zone_end - wnd->zone_bit; in wnd_zone_set() local 1393 if (zlen) in wnd_zone_set() 1394 wnd_add_free_ext(wnd, wnd->zone_bit, zlen, false); in wnd_zone_set()
|
/linux-6.1.9/fs/ceph/ |
D | file.c | 1000 int zlen = min(len - ret, i_size - off - ret); in ceph_sync_read() local 1003 off + ret, off + ret + zlen); in ceph_sync_read() 1004 ceph_zero_page_vector_range(zoff, zlen, pages); in ceph_sync_read() 1005 ret += zlen; in ceph_sync_read() 1148 int zlen = len - rc; in ceph_aio_complete_req() local 1159 zlen = min_t(size_t, zlen, in ceph_aio_complete_req() 1161 aio_req->total_len = rc + zlen; in ceph_aio_complete_req() 1167 iov_iter_zero(zlen, &i); in ceph_aio_complete_req() 1400 int zlen = min_t(size_t, len - ret, in ceph_direct_read_write() local 1405 iov_iter_zero(zlen, &i); in ceph_direct_read_write() [all …]
|