Changes in uspace/srv/fs/mfs/mfs_inode.c [77ec4d9:7a46bfe] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_inode.c
r77ec4d9 r7a46bfe 48 48 struct mfs_ino_info **ino_ptr, uint32_t inum); 49 49 50 /**Read a MINIX inode from disk 51 * 52 * @param inst Pointer to the filesystem instance. 53 * @param ino_i Pointer to the generic MINIX inode 54 * where the inode content will be stored. 55 * @param index index of the inode to read. 56 * 57 * @return EOK on success or a negative error code. 58 */ 50 59 51 int 60 52 mfs_get_inode(struct mfs_instance *inst, struct mfs_ino_info **ino_i, … … 193 185 } 194 186 195 /**Write a MINIX inode on disk (if marked as dirty)196 *197 * @param mnode Pointer to the generic MINIX inode in memory.198 *199 * @return EOK on success or a negative error code.200 */201 187 int 202 mfs_put_inode (struct mfs_node *mnode)188 mfs_put_inode_core(struct mfs_node *mnode) 203 189 { 204 190 int rc = EOK; … … 313 299 } 314 300 315 /**Reduce the inode size of a given number of bytes316 *317 * @param mnode Pointer to the generic MINIX inode in memory.318 * @param size_shrink Number of bytes that will be subtracted to the inode.319 *320 * @return EOK on success or a negative error code.321 */322 301 int 323 302 mfs_inode_shrink(struct mfs_node *mnode, size_t size_shrink)
Note:
See TracChangeset
for help on using the changeset viewer.