Changeset 77a2d77 in mainline
- Timestamp:
- 2011-03-29T18:51:34Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2cf95e8
- Parents:
- ba5beaf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_balloc.c
rba5beaf r77a2d77 12 12 { 13 13 struct mfs_sb_info *sbi; 14 u nsigned start_block;14 uint32_t limit; 15 15 unsigned long nblocks; 16 unsigned *search, i ;16 unsigned *search, i, start_block; 17 17 int r, freebit; 18 18 … … 25 25 start_block = 2 + sbi->ibmap_blocks; 26 26 nblocks = sbi->zbmap_blocks; 27 limit = sbi->nzones; 27 28 } else { 28 29 /*bid == BMAP_INODE*/ … … 30 31 start_block = 2; 31 32 nblocks = sbi->ibmap_blocks; 33 limit = sbi->ninodes; 32 34 } 33 35 … … 52 54 /*Free bit found, compute real index*/ 53 55 *idx = (freebit + sbi->block_size * 8 * i); 56 if (*idx > limit) { 57 /*Index is beyond the limit, it is invalid*/ 58 block_put(b); 59 break; 60 } 61 54 62 *search = i; 55 63 b->dirty = true; 56 64 block_put(b); 57 65 goto found; 58 59 66 } 60 67
Note:
See TracChangeset
for help on using the changeset viewer.