Changeset 6da81e0 in mainline for uspace/srv/fs/fat/fat_ops.c
- Timestamp:
- 2010-07-28T10:12:43Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dba4a23
- Parents:
- 7a23d60
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_ops.c
r7a23d60 r6da81e0 121 121 /* Read the block that contains the dentry of interest. */ 122 122 rc = _fat_block_get(&b, bs, node->idx->dev_handle, node->idx->pfc, 123 (node->idx->pdi * sizeof(fat_dentry_t)) / BPS(bs),123 NULL, (node->idx->pdi * sizeof(fat_dentry_t)) / BPS(bs), 124 124 BLOCK_FLAGS_NONE); 125 125 if (rc != EOK) … … 299 299 300 300 /* Read the block that contains the dentry of interest. */ 301 rc = _fat_block_get(&b, bs, idxp->dev_handle, idxp->pfc, 301 rc = _fat_block_get(&b, bs, idxp->dev_handle, idxp->pfc, NULL, 302 302 (idxp->pdi * sizeof(fat_dentry_t)) / BPS(bs), BLOCK_FLAGS_NONE); 303 303 if (rc != EOK) { … … 799 799 800 800 rc = _fat_block_get(&b, bs, childp->idx->dev_handle, childp->idx->pfc, 801 (childp->idx->pdi * sizeof(fat_dentry_t)) / BPS(bs),801 NULL, (childp->idx->pdi * sizeof(fat_dentry_t)) / BPS(bs), 802 802 BLOCK_FLAGS_NONE); 803 803 if (rc != EOK) … … 1381 1381 return; 1382 1382 } 1383 rc = _fat_block_get(&b, bs, dev_handle, lcl, 1383 rc = _fat_block_get(&b, bs, dev_handle, lcl, NULL, 1384 1384 (pos / BPS(bs)) % SPC(bs), flags); 1385 1385 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.