Changeset cde999a in mainline for uspace/srv/fs/mfs
- Timestamp:
- 2018-01-04T20:22:51Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3d95c9d, 84a1a54
- Parents:
- 3c7702c0
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:22:51)
- Location:
- uspace/srv/fs/mfs
- Files:
-
- 4 edited
-
mfs_balloc.c (modified) (9 diffs)
-
mfs_dentry.c (modified) (4 diffs)
-
mfs_inode.c (modified) (3 diffs)
-
mfs_rw.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_balloc.c
r3c7702c0 rcde999a 54 54 * the new inode will be saved. 55 55 * 56 * @return EOK on success or a negativeerror code.56 * @return EOK on success or an error code. 57 57 */ 58 58 int … … 68 68 * @param inum Number of the inode to free. 69 69 * 70 * @return EOK on success or a negativeerror code.70 * @return EOK on success or an error code. 71 71 */ 72 72 int … … 82 82 * of the zone will be saved. 83 83 * 84 * @return EOK on success or a negativeerror code.84 * @return EOK on success or an error code. 85 85 */ 86 86 int … … 105 105 * @param zone Index of the zone to free. 106 106 * 107 * @return EOK on success or a negativeerror code.107 * @return EOK on success or an error code. 108 108 */ 109 109 int … … 132 132 * will be stored. 133 133 * 134 * @return EOK on success or a negativeerror code.134 * @return EOK on success or an error code. 135 135 */ 136 136 int … … 146 146 * will be stored. 147 147 * 148 * @return EOK on success or a negativeerror code.148 * @return EOK on success or an error code. 149 149 */ 150 150 … … 162 162 * will be stores. 163 163 * 164 * @return EOK on success or a negativeerror code.164 * @return EOK on success or an error code. 165 165 */ 166 166 static int … … 226 226 * BMAP_INODE if operating on the inode's bitmap. 227 227 * 228 * @return EOK on success or a negativeerror code.228 * @return EOK on success or an error code. 229 229 */ 230 230 static int … … 293 293 * BMAP_INODE if operating on the inode's bitmap. 294 294 * 295 * @return EOK on success or a negativeerror code.295 * @return EOK on success or an error code. 296 296 */ 297 297 static int -
uspace/srv/fs/mfs/mfs_dentry.c
r3c7702c0 rcde999a 40 40 * @param index index of the dentry in the list. 41 41 * 42 * @return EOK on success or a negativeerror code.42 * @return EOK on success or an error code. 43 43 */ 44 44 int … … 103 103 * @param d_info The directory entry to write to disk. 104 104 * 105 * @return EOK on success or a negativeerror code.105 * @return EOK on success or an error code. 106 106 */ 107 107 int … … 154 154 * @param d_name Name of the directory entry to delete. 155 155 * 156 * @return EOK on success or a negativeerror code.156 * @return EOK on success or an error code. 157 157 */ 158 158 int … … 195 195 * @param d_inum index of the inode that will be pointed by the new dentry. 196 196 * 197 * @return EOK on success or a negativeerror code.197 * @return EOK on success or an error code. 198 198 */ 199 199 int -
uspace/srv/fs/mfs/mfs_inode.c
r3c7702c0 rcde999a 55 55 * @param index index of the inode to read. 56 56 * 57 * @return EOK on success or a negativeerror code.57 * @return EOK on success or an error code. 58 58 */ 59 59 int … … 201 201 * @param mnode Pointer to the generic MINIX inode in memory. 202 202 * 203 * @return EOK on success or a negativeerror code.203 * @return EOK on success or an error code. 204 204 */ 205 205 int … … 319 319 * @param size_shrink Number of bytes that will be subtracted to the inode. 320 320 * 321 * @return EOK on success or a negativeerror code.321 * @return EOK on success or an error code. 322 322 */ 323 323 int -
uspace/srv/fs/mfs/mfs_rw.c
r3c7702c0 rcde999a 59 59 * @param pos Position in file. 60 60 * 61 * @return EOK on success or a negativeerror code.61 * @return EOK on success or an error code. 62 62 */ 63 63 int … … 236 236 * @param new_size The new size of the inode. 237 237 * 238 * @return EOK on success or a negativeerror code.238 * @return EOK on success or an error code. 239 239 */ 240 240 int
Note:
See TracChangeset
for help on using the changeset viewer.
