Searched refs:tmpmax (Results 1 – 2 of 2) sorted by relevance
/fs/ocfs2/ |
D | ocfs2.h | 923 int fix = 0, ret, tmpmax; in ocfs2_find_next_zero_bit_unaligned() local 925 tmpmax = max + fix; in ocfs2_find_next_zero_bit_unaligned() 928 ret = ocfs2_find_next_zero_bit(bitmap, tmpmax, start) - fix; in ocfs2_find_next_zero_bit_unaligned()
|
/fs/ext4/ |
D | mballoc.c | 404 int fix = 0, ret, tmpmax; in mb_find_next_zero_bit() local 406 tmpmax = max + fix; in mb_find_next_zero_bit() 409 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit() 417 int fix = 0, ret, tmpmax; in mb_find_next_bit() local 419 tmpmax = max + fix; in mb_find_next_bit() 422 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
|