Searched refs:tmpmax (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/fs/ocfs2/ |
D | ocfs2.h | 922 int fix = 0, ret, tmpmax; in ocfs2_find_next_zero_bit_unaligned() local 924 tmpmax = max + fix; in ocfs2_find_next_zero_bit_unaligned() 927 ret = ocfs2_find_next_zero_bit(bitmap, tmpmax, start) - fix; in ocfs2_find_next_zero_bit_unaligned()
|
/Linux-v6.1/fs/ext4/ |
D | mballoc.c | 491 int fix = 0, ret, tmpmax; in mb_find_next_zero_bit() local 493 tmpmax = max + fix; in mb_find_next_zero_bit() 496 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit() 504 int fix = 0, ret, tmpmax; in mb_find_next_bit() local 506 tmpmax = max + fix; in mb_find_next_bit() 509 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
|