Changeset f1ba5d6 in mainline for uspace/srv/fs


Ignore:
Timestamp:
2008-11-02T13:38:56Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e1c88d5
Parents:
0c243b4
Message:

Add block_cache_init().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    r0c243b4 rf1ba5d6  
    462462        }
    463463
     464        /* Initialize the block cache */
     465        rc = block_cache_init(dev_handle, bps, 0 /* XXX */);
     466        if (rc != EOK) {
     467                block_fini(dev_handle);
     468                ipc_answer_0(rid, rc);
     469                return;
     470        }
     471
    464472        rc = fat_idx_init_by_dev_handle(dev_handle);
    465473        if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.