Changeset bfbe16f in mainline
- Timestamp:
- 2011-04-21T19:10:30Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- adddd75
- Parents:
- e5cebc9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_inode.c
re5cebc9 rbfbe16f 310 310 { 311 311 unsigned i; 312 313 if (size_grow == 0)314 return EOK;315 316 312 struct mfs_sb_info *sbi = mnode->instance->sbi; 317 313 struct mfs_ino_info *ino_i = mnode->ino_i; … … 320 316 const uint32_t old_size = ino_i->i_size; 321 317 const uint32_t new_size = old_size + size_grow; 318 319 assert(size_grow > 0); 322 320 323 321 /*Compute the number of zones to add to the inode*/
Note:
See TracChangeset
for help on using the changeset viewer.