Changeset d510ac01 in mainline
- Timestamp:
- 2012-06-23T19:53:49Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 02020dc
- Parents:
- 380553c
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/ext4/libext4_extent.c ¶
r380553c rd510ac01 742 742 uint32_t iblock) 743 743 { 744 EXT4FS_DBG("iblock = \%u", iblock);745 744 746 745 int rc; … … 968 967 */ 969 968 int ext4_extent_append_block(ext4_inode_ref_t *inode_ref, 970 uint32_t *iblock, uint32_t *fblock )969 uint32_t *iblock, uint32_t *fblock, bool update_size) 971 970 { 972 971 int rc = EOK; … … 1026 1025 1027 1026 /* Update i-node */ 1028 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1029 inode_ref->dirty = true; 1027 if (update_size) { 1028 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1029 inode_ref->dirty = true; 1030 } 1030 1031 1031 1032 path_ptr->block->dirty = true; … … 1056 1057 1057 1058 /* Update i-node */ 1058 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1059 inode_ref->dirty = true; 1059 if (update_size) { 1060 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1061 inode_ref->dirty = true; 1062 } 1060 1063 1061 1064 path_ptr->block->dirty = true; … … 1067 1070 /* Append new extent to the tree */ 1068 1071 append_extent: 1069 1070 /* Append extent for new block (includes tree splitting if needed) */1071 rc = ext4_extent_append_extent(inode_ref, path, &path_ptr, new_block_idx);1072 if (rc != EOK) {1073 goto finish;1074 }1075 1072 1076 1073 phys_block = 0; … … 1083 1080 } 1084 1081 1082 /* Append extent for new block (includes tree splitting if needed) */ 1083 rc = ext4_extent_append_extent(inode_ref, path, &path_ptr, new_block_idx); 1084 if (rc != EOK) { 1085 ext4_balloc_free_block(inode_ref, phys_block); 1086 goto finish; 1087 } 1088 1085 1089 /* Initialize newly created extent */ 1086 1090 ext4_extent_set_block_count(path_ptr->extent, 1); … … 1089 1093 1090 1094 /* Update i-node */ 1091 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1092 inode_ref->dirty = true; 1095 if (update_size) { 1096 ext4_inode_set_size(inode_ref->inode, inode_size + block_size); 1097 inode_ref->dirty = true; 1098 } 1093 1099 1094 1100 path_ptr->block->dirty = true; -
TabularUnified uspace/lib/ext4/libext4_extent.h ¶
r380553c rd510ac01 64 64 extern int ext4_extent_release_blocks_from(ext4_inode_ref_t *, uint32_t); 65 65 66 extern int ext4_extent_append_block(ext4_inode_ref_t *, uint32_t *, uint32_t * );66 extern int ext4_extent_append_block(ext4_inode_ref_t *, uint32_t *, uint32_t *, bool); 67 67 68 68 #endif -
TabularUnified uspace/lib/ext4/libext4_filesystem.c ¶
r380553c rd510ac01 1119 1119 ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS)) { 1120 1120 1121 return ext4_extent_append_block(inode_ref, iblock, fblock );1121 return ext4_extent_append_block(inode_ref, iblock, fblock, true); 1122 1122 1123 1123 } -
TabularUnified uspace/srv/fs/ext4fs/ext4fs_ops.c ¶
r380553c rd510ac01 1344 1344 (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) { 1345 1345 1346 uint32_t tmp_iblock = 0;1347 do{1348 rc = ext4_ filesystem_append_inode_block(inode_ref, &fblock, &tmp_iblock);1346 uint32_t last_iblock = ext4_inode_get_size(fs->superblock, inode_ref->inode) / block_size; 1347 while (last_iblock < iblock) { 1348 rc = ext4_extent_append_block(inode_ref, &last_iblock, &fblock, true); 1349 1349 if (rc != EOK) { 1350 1350 ext4fs_node_put(fn); … … 1352 1352 return rc; 1353 1353 } 1354 } while (tmp_iblock < iblock); 1354 } 1355 1356 rc = ext4_extent_append_block(inode_ref, &last_iblock, &fblock, false); 1357 if (rc != EOK) { 1358 ext4fs_node_put(fn); 1359 async_answer_0(callid, rc); 1360 return rc; 1361 } 1355 1362 1356 1363 } else {
Note:
See TracChangeset
for help on using the changeset viewer.