Searched refs:tmpmax (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.15/fs/ocfs2/ |
D | ocfs2.h | 924 int fix = 0, ret, tmpmax; in ocfs2_find_next_zero_bit_unaligned() local 926 tmpmax = max + fix; in ocfs2_find_next_zero_bit_unaligned() 929 ret = ocfs2_find_next_zero_bit(bitmap, tmpmax, start) - fix; in ocfs2_find_next_zero_bit_unaligned()
|
/Linux-v5.15/fs/ext4/ |
D | mballoc.c | 488 int fix = 0, ret, tmpmax; in mb_find_next_zero_bit() local 490 tmpmax = max + fix; in mb_find_next_zero_bit() 493 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit() 501 int fix = 0, ret, tmpmax; in mb_find_next_bit() local 503 tmpmax = max + fix; in mb_find_next_bit() 506 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
|