Changeset c68edd2 in mainline for uspace/lib/fs/libfs.c


Ignore:
Timestamp:
2017-03-22T20:31:52Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c9e3692
Parents:
e4e546b
Message:

Remove L_OPEN

Opens are now explicit in the interface and operate directly on file
handles, so there is no need to maintain an unused lookup flag.

File:
1 edited

Legend:

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

    re4e546b rc68edd2  
    704704        }
    705705       
    706         if (lflag & L_OPEN) {
    707                 rc = ops->node_open(cur);
    708                 if (rc != EOK) {
    709                         async_answer_0(rid, rc);
    710                         goto out;
    711                 }
    712         }
    713        
    714706        int64_t size = ops->size_get(cur);
    715707        int32_t lsize = LOWER32(size);
Note: See TracChangeset for help on using the changeset viewer.