Changeset ac49f5d1 in mainline
- Timestamp:
- 2008-11-09T19:24:11Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9a3d5f0
- Parents:
- 913a821c
- Location:
- uspace/srv/fs/fat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_fat.c
r913a821c rac49f5d1 421 421 * @param lastc Last cluster which will remain in the node. If this 422 422 * argument is FAT_CLST_RES0, then all clusters will 423 * be chop ed off.423 * be chopped off. 424 424 */ 425 425 void fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lastc) -
uspace/srv/fs/fat/fat_ops.c
r913a821c rac49f5d1 684 684 nodep->dirty = true; /* need to sync node */ 685 685 } 686 ipc_answer_2(rid, EOK, bytes, nodep->size); 686 687 fat_node_put(nodep); 687 ipc_answer_1(rid, EOK, bytes);688 688 return; 689 689 } else { … … 720 720 nodep->size = pos + bytes; 721 721 nodep->dirty = true; /* need to sync node */ 722 ipc_answer_2(rid, EOK, bytes, nodep->size); 722 723 fat_node_put(nodep); 723 ipc_answer_1(rid, EOK, bytes);724 724 return; 725 725 }
Note:
See TracChangeset
for help on using the changeset viewer.