Changes in / [4c53333:c8bb1633] in mainline
- Files:
-
- 18 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_balloc.c
r4c53333 rc8bb1633 128 128 start_block = 2 + sbi->ibmap_blocks; 129 129 if (idx > sbi->nzones) { 130 printf(NAME ": Error! Trying to free beyond the "130 printf(NAME ": Error! Trying to free beyond the" \ 131 131 "bitmap max size\n"); 132 132 return -1; … … 137 137 start_block = 2; 138 138 if (idx > sbi->ninodes) { 139 printf(NAME ": Error! Trying to free beyond the "139 printf(NAME ": Error! Trying to free beyond the" \ 140 140 "bitmap max size\n"); 141 141 return -1; -
uspace/srv/fs/mfs/mfs_dentry.c
r4c53333 rc8bb1633 36 36 * 37 37 * @param mnode Pointer to the directory node. 38 * @param d_info Pointer to a directory entry structure where 39 * the dentry infowill be stored.38 * @param d_info Pointer to a directory entry structure where the dentry info 39 * will be stored. 40 40 * @param index index of the dentry in the list. 41 41 * … … 101 101 /**Write a directory entry on disk. 102 102 * 103 * @param d_info The directory entry to write todisk.103 * @param d_info Pointer to the directory entry structure to write on disk. 104 104 * 105 105 * @return EOK on success or a negative error code. -
uspace/srv/fs/mfs/mfs_ops.c
r4c53333 rc8bb1633 88 88 89 89 /* Hash table interface for open nodes hash table */ 90 90 91 typedef struct { 91 92 service_id_t service_id; … … 189 190 /* This is a V1 or V2 Minix filesystem */ 190 191 magic = sb->s_magic; 191 } else if (check_magic_number(sb3->s_magic, &native, 192 &version, &longnames)) { 192 } else if (check_magic_number(sb3->s_magic, &native, &version, &longnames)) { 193 193 /* This is a V3 Minix filesystem */ 194 194 magic = sb3->s_magic; … … 568 568 if (already_open) { 569 569 mnode = hash_table_get_inst(already_open, struct mfs_node, link); 570 571 570 *rfn = mnode->fsnode; 572 571 mnode->refcnt++;
Note:
See TracChangeset
for help on using the changeset viewer.