Changeset c2e50d7 in mainline
- Timestamp:
- 2011-11-11T19:47:49Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 54464f6a
- Parents:
- 48902fa
- Location:
- uspace/srv/fs/mfs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_balloc.c
r48902fa rc2e50d7 198 198 limit = sbi->nzones - sbi->firstdatazone - 1; 199 199 } else { 200 /* bid == BMAP_INODE*/200 /* bid == BMAP_INODE */ 201 201 search = &sbi->isearch; 202 202 start_block = 2; … … 212 212 for (i = *search / bits_per_block; i < nblocks; ++i) { 213 213 r = block_get(&b, inst->service_id, i + start_block, 214 214 BLOCK_FLAGS_NONE); 215 215 216 216 if (r != EOK) -
uspace/srv/fs/mfs/mfs_dentry.c
r48902fa rc2e50d7 168 168 return ENAMETOOLONG; 169 169 170 /* Search the directory entry to be removed*/170 /* Search the directory entry to be removed */ 171 171 unsigned i; 172 172 for (i = 0; i < mnode->ino_i->i_size / sbi->dirsize ; ++i) { -
uspace/srv/fs/mfs/mfs_inode.c
r48902fa rc2e50d7 235 235 236 236 r = block_get(&b, mnode->instance->service_id, 237 238 237 itable_off + inum / sbi->ino_per_block, 238 BLOCK_FLAGS_NONE); 239 239 240 240 if (r != EOK) … … 278 278 279 279 r = block_get(&b, mnode->instance->service_id, 280 281 280 itable_off + inum / sbi->ino_per_block, 281 BLOCK_FLAGS_NONE); 282 282 283 283 if (r != EOK) -
uspace/srv/fs/mfs/mfs_ops.c
r48902fa rc2e50d7 837 837 found: 838 838 async_data_read_finalize(callid, d_info.d_name, 839 839 str_size(d_info.d_name) + 1); 840 840 bytes = ((pos - spos) + 1); 841 841 } else {
Note:
See TracChangeset
for help on using the changeset viewer.