Searched refs:near (Results 1 – 1 of 1) sorted by relevance
/fs/hpfs/ |
D | alloc.c | 115 static secno alloc_in_bmp(struct super_block *s, secno near, unsigned n, unsigned forward) in alloc_in_bmp() argument 119 unsigned bs = near & ~0x3fff; in alloc_in_bmp() 120 unsigned nr = (near & 0x3fff) & ~(n - 1); in alloc_in_bmp() 130 if (!(bmp = hpfs_map_bitmap(s, near >> 14, &qbh, "aib"))) goto uls; in alloc_in_bmp() 203 secno hpfs_alloc_sector(struct super_block *s, secno near, unsigned n, int forward) in hpfs_alloc_sector() argument 216 if (near && near < sbi->sb_fs_size) { in hpfs_alloc_sector() 217 if ((sec = alloc_in_bmp(s, near, n, f_p ? forward : forward/4))) goto ret; in hpfs_alloc_sector() 218 near_bmp = near >> 14; in hpfs_alloc_sector() 277 static secno alloc_in_dirband(struct super_block *s, secno near) in alloc_in_dirband() argument 279 unsigned nr = near; in alloc_in_dirband() [all …]
|