Changeset 34f62f8 in mainline for uspace/lib/libfs/libfs.c


Ignore:
Timestamp:
2008-04-20T11:22:33Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
869e546
Parents:
9765182
Message:

Revert libfs node_get() API to a model without the parent node pointer
argument.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libfs/libfs.c

    r9765182 r34f62f8  
    195195                                else
    196196                                        nodep = ops->node_get(dev_handle,
    197                                             index, ops->index_get(cur));
     197                                            index);
    198198                                if (nodep) {
    199199                                        if (!ops->link(cur, nodep, component)) {
     
    263263                                nodep = ops->create(lflag);
    264264                        else
    265                                 nodep = ops->node_get(dev_handle, index,
    266                                     ops->index_get(cur));
     265                                nodep = ops->node_get(dev_handle, index);
    267266                        if (nodep) {
    268267                                if (!ops->link(cur, nodep, component)) {
Note: See TracChangeset for help on using the changeset viewer.