Lines Matching refs:phys
66 unsigned long phys; in bfs_get_block() local
72 phys = bi->i_sblock + block; in bfs_get_block()
74 if (phys <= bi->i_eblock) { in bfs_get_block()
76 create, (unsigned long)block, phys); in bfs_get_block()
77 map_bh(bh_result, sb, phys); in bfs_get_block()
86 if (bi->i_sblock && (phys <= bi->i_eblock)) { in bfs_get_block()
88 create, (unsigned long)block, phys); in bfs_get_block()
89 map_bh(bh_result, sb, phys); in bfs_get_block()
94 if (phys >= info->si_blocks) in bfs_get_block()
107 create, (unsigned long)block, phys); in bfs_get_block()
108 map_bh(bh_result, sb, phys); in bfs_get_block()
109 info->si_freeb -= phys - bi->i_eblock; in bfs_get_block()
110 info->si_lf_eblk = bi->i_eblock = phys; in bfs_get_block()
117 phys = info->si_lf_eblk + 1; in bfs_get_block()
118 if (phys + block >= info->si_blocks) { in bfs_get_block()
125 bi->i_eblock, phys); in bfs_get_block()
135 create, (unsigned long)block, phys); in bfs_get_block()
136 bi->i_sblock = phys; in bfs_get_block()
137 phys += block; in bfs_get_block()
138 info->si_lf_eblk = bi->i_eblock = phys; in bfs_get_block()
146 map_bh(bh_result, sb, phys); in bfs_get_block()