Changeset fc22069 in mainline for uspace/srv/fs
- Timestamp:
- 2015-08-22T05:12:30Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 78bb04b
- Parents:
- d9e68d0
- Location:
- uspace/srv/fs
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
rd9e68d0 rfc22069 1025 1025 { 1026 1026 /* Initialize the block layer */ 1027 int rc = block_init( EXCHANGE_SERIALIZE,service_id, BLOCK_SIZE);1027 int rc = block_init(service_id, BLOCK_SIZE); 1028 1028 if (rc != EOK) 1029 1029 return rc; -
uspace/srv/fs/exfat/exfat_ops.c
rd9e68d0 rfc22069 1067 1067 1068 1068 /* initialize libblock */ 1069 rc = block_init( EXCHANGE_SERIALIZE,service_id, BS_SIZE);1069 rc = block_init(service_id, BS_SIZE); 1070 1070 if (rc != EOK) 1071 1071 return rc; -
uspace/srv/fs/fat/fat_ops.c
rd9e68d0 rfc22069 939 939 940 940 /* initialize libblock */ 941 rc = block_init( EXCHANGE_SERIALIZE,service_id, BS_SIZE);941 rc = block_init(service_id, BS_SIZE); 942 942 if (rc != EOK) { 943 943 free(instance); -
uspace/srv/fs/mfs/mfs_ops.c
rd9e68d0 rfc22069 161 161 162 162 /* initialize libblock */ 163 rc = block_init( EXCHANGE_SERIALIZE,service_id, 4096);163 rc = block_init(service_id, 4096); 164 164 if (rc != EOK) 165 165 return rc; -
uspace/srv/fs/tmpfs/tmpfs_dump.c
rd9e68d0 rfc22069 169 169 int rc; 170 170 171 rc = block_init( EXCHANGE_SERIALIZE,dsid, TMPFS_COMM_SIZE);171 rc = block_init(dsid, TMPFS_COMM_SIZE); 172 172 if (rc != EOK) 173 173 return false; -
uspace/srv/fs/udf/udf_ops.c
rd9e68d0 rfc22069 325 325 326 326 /* initialize block cache */ 327 int rc = block_init( EXCHANGE_SERIALIZE,service_id, MAX_SIZE);327 int rc = block_init(service_id, MAX_SIZE); 328 328 if (rc != EOK) 329 329 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.