Changeset cde999a in mainline for uspace/srv/fs
- 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
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat_fat.c
r3c7702c0 rcde999a 71 71 * @param max_clusters Maximum number of clusters to visit. 72 72 * 73 * @return EOK on success or a negativeerror code.73 * @return EOK on success or an error code. 74 74 */ 75 75 int … … 120 120 * @param flags Flags passed to libblock. 121 121 * 122 * @return EOK on success or a negativeerror code.122 * @return EOK on success or an error code. 123 123 */ 124 124 int … … 184 184 * @param flags Flags passed to libblock. 185 185 * 186 * @return EOK on success or a negativeerror code.186 * @return EOK on success or an error code. 187 187 */ 188 188 int … … 227 227 * @param value Output argument holding the value of the cluster. 228 228 * 229 * @return EOK or a negativeerror code.229 * @return EOK or an error code. 230 230 */ 231 231 int … … 257 257 * @param value Value to set the cluster with. 258 258 * 259 * @return EOK on success or a negativeerror code.259 * @return EOK on success or an error code. 260 260 */ 261 261 int … … 295 295 * will be returned. 296 296 * 297 * @return EOK on success, a negativeerror code otherwise.297 * @return EOK on success, an error code otherwise. 298 298 */ 299 299 int … … 361 361 * @param firstc First cluster in the chain which is to be freed. 362 362 * 363 * @return EOK on success or a negative returncode.363 * @return EOK on success or an error code. 364 364 */ 365 365 int … … 394 394 * @param lcl Last cluster of the cluster chain to append. 395 395 * 396 * @return EOK on success or a negativeerror code.396 * @return EOK on success or an error code. 397 397 */ 398 398 int … … 438 438 * be chopped off. 439 439 * 440 * @return EOK on success or a negative returncode.440 * @return EOK on success or an error code. 441 441 */ 442 442 int exfat_chop_clusters(exfat_bs_t *bs, exfat_node_t *nodep, exfat_cluster_t lcl) -
uspace/srv/fs/fat/fat_fat.c
r3c7702c0 rcde999a 71 71 * @param max_clusters Maximum number of clusters to visit. 72 72 * 73 * @return EOK on success or a negativeerror code.73 * @return EOK on success or an error code. 74 74 */ 75 75 int … … 121 121 * @param flags Flags passed to libblock. 122 122 * 123 * @return EOK on success or a negativeerror code.123 * @return EOK on success or an error code. 124 124 */ 125 125 int … … 186 186 * @param flags Flags passed to libblock. 187 187 * 188 * @return EOK on success or a negativeerror code.188 * @return EOK on success or an error code. 189 189 */ 190 190 int … … 235 235 * @param pos Position in the last node block. 236 236 * 237 * @return EOK on success or a negativeerror code.237 * @return EOK on success or an error code. 238 238 */ 239 239 int … … 287 287 * @param value Output argument holding the value of the cluster. 288 288 * 289 * @return EOK or a negativeerror code.289 * @return EOK or an error code. 290 290 */ 291 291 static int … … 357 357 * @param value Output argument holding the value of the cluster. 358 358 * 359 * @return EOK or a negativeerror code.359 * @return EOK or an error code. 360 360 */ 361 361 static int … … 388 388 * @param value Output argument holding the value of the cluster. 389 389 * 390 * @return EOK or a negativeerror code.390 * @return EOK or an error code. 391 391 */ 392 392 static int … … 421 421 * @param value Output argument holding the value of the cluster. 422 422 * 423 * @return EOK or a negativeerror code.423 * @return EOK or an error code. 424 424 */ 425 425 int … … 449 449 * @param value Value to set the cluster with. 450 450 * 451 * @return EOK on success or a negativeerror code.451 * @return EOK on success or an error code. 452 452 */ 453 453 static int … … 537 537 * @param value Value to set the cluster with. 538 538 * 539 * @return EOK on success or a negativeerror code.539 * @return EOK on success or an error code. 540 540 */ 541 541 static int … … 570 570 * @param value Value to set the cluster with. 571 571 * 572 * @return EOK on success or a negativeerror code.572 * @return EOK on success or an error code. 573 573 */ 574 574 static int … … 607 607 * @param value Value to set the cluster with. 608 608 * 609 * @return EOK on success or a negativeerror code.609 * @return EOK on success or an error code. 610 610 */ 611 611 int … … 634 634 * @param nclsts Number of clusters in the lifo chain. 635 635 * 636 * @return EOK on success or a negativeerror code.636 * @return EOK on success or an error code. 637 637 */ 638 638 int fat_alloc_shadow_clusters(fat_bs_t *bs, service_id_t service_id, … … 671 671 * will be returned. 672 672 * 673 * @return EOK on success, a negativeerror code otherwise.673 * @return EOK on success, an error code otherwise. 674 674 */ 675 675 int … … 742 742 * @param firstc First cluster in the chain which is to be freed. 743 743 * 744 * @return EOK on success or a negative returncode.744 * @return EOK on success or an error code. 745 745 */ 746 746 int … … 780 780 * @param lcl Last cluster of the cluster chain to append. 781 781 * 782 * @return EOK on success or a negativeerror code.782 * @return EOK on success or an error code. 783 783 */ 784 784 int fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, … … 827 827 * be chopped off. 828 828 * 829 * @return EOK on success or a negative returncode.829 * @return EOK on success or an error code. 830 830 */ 831 831 int fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lcl) -
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 -
uspace/srv/fs/udf/udf_file.c
r3c7702c0 rcde999a 54 54 * @param pos Position with which we read 55 55 * 56 * @return EOK on success or a negativeerror code.56 * @return EOK on success or an error code. 57 57 * 58 58 */ … … 90 90 * @param len Length of sequence 91 91 * 92 * @return EOK on success or a negativeerror code.92 * @return EOK on success or an error code. 93 93 * 94 94 */ … … 231 231 * @param node UDF node 232 232 * 233 * @return EOK on success or a negativeerror code.233 * @return EOK on success or an error code. 234 234 */ 235 235 int udf_read_icb(udf_node_t *node) … … 300 300 * @param node UDF node 301 301 * 302 * @return EOK on success or a negativeerror code.302 * @return EOK on success or an error code. 303 303 * 304 304 */ … … 315 315 * @param pos Number of FID which we need to find 316 316 * 317 * @return EOK on success or a negativeerror code.317 * @return EOK on success or an error code. 318 318 * 319 319 */ … … 366 366 * @param pos Number of FID which we need to find 367 367 * 368 * @return EOK on success or a negativeerror code.368 * @return EOK on success or an error code. 369 369 * 370 370 */ … … 385 385 * @param pos Number of FID which we need to find 386 386 * 387 * @return EOK on success or a negativeerror code.387 * @return EOK on success or an error code. 388 388 * 389 389 */ … … 466 466 * @param len Length of buf 467 467 * 468 * @return EOK on success or a negativeerror code.468 * @return EOK on success or an error code. 469 469 * 470 470 */ … … 573 573 * @param len Length of data for reading 574 574 * 575 * @return EOK on success or a negativeerror code.575 * @return EOK on success or an error code. 576 576 * 577 577 */ -
uspace/srv/fs/udf/udf_idx.c
r3c7702c0 rcde999a 88 88 /** Initialization of hash table 89 89 * 90 * @return EOK on success or a negativeerror code.90 * @return EOK on success or an error code. 91 91 * 92 92 */ … … 101 101 /** Delete hash table 102 102 * 103 * @return EOK on success or a negativeerror code.103 * @return EOK on success or an error code. 104 104 * 105 105 */ … … 116 116 * @param index Absolute position of ICB (sector) 117 117 * 118 * @return EOK on success or a negativeerror code.118 * @return EOK on success or an error code. 119 119 * 120 120 */ … … 150 150 * @param index Absolute position of ICB (sector) 151 151 * 152 * @return EOK on success or a negativeerror code.152 * @return EOK on success or an error code. 153 153 * 154 154 */ … … 196 196 * @param node UDF node 197 197 * 198 * @return EOK on success or a negativeerror code.198 * @return EOK on success or an error code. 199 199 * 200 200 */ -
uspace/srv/fs/udf/udf_volume.c
r3c7702c0 rcde999a 81 81 * @param vd Returned value - Volume Descriptor. 82 82 * 83 * @return EOK on success or a negativeerror code.83 * @return EOK on success or an error code. 84 84 * 85 85 */ … … 98 98 * @param service_id 99 99 * 100 * @return EOK on success or a negativeerror code.100 * @return EOK on success or an error code. 101 101 */ 102 102 int udf_volume_recongnition(service_id_t service_id) … … 167 167 * @param sector_size Expected sector size 168 168 * 169 * @return EOK on success or a negativeerror code.169 * @return EOK on success or an error code. 170 170 * 171 171 */ … … 204 204 * @param avd Returned value - Anchor Volume Descriptor 205 205 * 206 * @return EOK on success or a negativeerror code.206 * @return EOK on success or an error code. 207 207 * 208 208 */ … … 357 357 * @param id Index of partition in instance::partitions array 358 358 * 359 * @return EOK on success or a negativeerror code.359 * @return EOK on success or an error code. 360 360 * 361 361 */ … … 438 438 * @param instance UDF instance 439 439 * 440 * @return EOK on success or a negativeerror code.440 * @return EOK on success or an error code. 441 441 * 442 442 */ … … 598 598 * @param addr UDF extent descriptor (ECMA 167 3/7.1) 599 599 * 600 * @return EOK on success or a negativeerror code.600 * @return EOK on success or an error code. 601 601 * 602 602 */
Note:
See TracChangeset
for help on using the changeset viewer.