Changeset 16dc887 in mainline for uspace/lib/ext2
- Timestamp:
- 2011-08-16T14:00:32Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 278ac72, b112055
- Parents:
- 3751a08 (diff), cc574511 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/ext2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext2/libext2_filesystem.c
r3751a08 r16dc887 50 50 * 51 51 * @param fs Pointer to ext2_filesystem_t to initialize 52 * @param devmap_handle Device handleof the block device53 * 54 * @return EOK on success or negative error code on failure 55 */ 56 int ext2_filesystem_init(ext2_filesystem_t *fs, devmap_handle_t devmap_handle)52 * @param service_id Service ID of the block device 53 * 54 * @return EOK on success or negative error code on failure 55 */ 56 int ext2_filesystem_init(ext2_filesystem_t *fs, service_id_t service_id) 57 57 { 58 58 int rc; … … 60 60 size_t block_size; 61 61 62 fs->device = devmap_handle;62 fs->device = service_id; 63 63 64 64 rc = block_init(EXCHANGE_SERIALIZE, fs->device, 2048); … … 80 80 } 81 81 82 rc = block_cache_init( devmap_handle, block_size, 0, CACHE_MODE_WT);82 rc = block_cache_init(service_id, block_size, 0, CACHE_MODE_WT); 83 83 if (rc != EOK) { 84 84 block_fini(fs->device); -
uspace/lib/ext2/libext2_filesystem.h
r3751a08 r16dc887 43 43 44 44 typedef struct ext2_filesystem { 45 devmap_handle_t device;45 service_id_t device; 46 46 ext2_superblock_t * superblock; 47 47 } ext2_filesystem_t; … … 59 59 #define EXT2_SUPPORTED_READ_ONLY_FEATURES 0 60 60 61 extern int ext2_filesystem_init(ext2_filesystem_t *, devmap_handle_t);61 extern int ext2_filesystem_init(ext2_filesystem_t *, service_id_t); 62 62 extern int ext2_filesystem_check_sanity(ext2_filesystem_t *); 63 63 extern int ext2_filesystem_check_flags(ext2_filesystem_t *, bool *); -
uspace/lib/ext2/libext2_superblock.c
r3751a08 r16dc887 321 321 /** Read a superblock directly from device (i.e. no libblock cache) 322 322 * 323 * @param devmap_handle Device handleof the block device.323 * @param service_id Service ID of the block device. 324 324 * @param superblock Pointer where to store pointer to new superblock 325 325 * 326 326 * @return EOK on success or negative error code on failure. 327 327 */ 328 int ext2_superblock_read_direct( devmap_handle_t devmap_handle,328 int ext2_superblock_read_direct(service_id_t service_id, 329 329 ext2_superblock_t **superblock) 330 330 { … … 337 337 } 338 338 339 rc = block_read_bytes_direct( devmap_handle, EXT2_SUPERBLOCK_OFFSET,339 rc = block_read_bytes_direct(service_id, EXT2_SUPERBLOCK_OFFSET, 340 340 EXT2_SUPERBLOCK_SIZE, data); 341 341 if (rc != EOK) { -
uspace/lib/ext2/libext2_superblock.h
r3751a08 r16dc887 110 110 extern uint32_t ext2_superblock_get_features_read_only(ext2_superblock_t *); 111 111 112 extern int ext2_superblock_read_direct( devmap_handle_t, ext2_superblock_t **);112 extern int ext2_superblock_read_direct(service_id_t, ext2_superblock_t **); 113 113 extern int ext2_superblock_check_sanity(ext2_superblock_t *); 114 114
Note:
See TracChangeset
for help on using the changeset viewer.