Changeset cfbcd86 in mainline for uspace/srv/fs/minixfs/mfs_ops.c


Ignore:
Timestamp:
2011-03-24T19:53:42Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
54caa41b
Parents:
4611094f
Message:

Link mfs_plb_get_char to the libfs structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs_ops.c

    r4611094f rcfbcd86  
    5353        .is_directory = mfs_is_directory,
    5454        .is_file = mfs_is_file,
    55         .node_get = mfs_node_get
     55        .node_get = mfs_node_get,
     56        .plb_get_char = mfs_plb_get_char
    5657};
    5758
     
    311312}
    312313
     314char mfs_plb_get_char(unsigned pos)
     315{
     316        return mfs_reg.plb_ro[pos % PLB_SIZE];
     317}
     318
    313319/*
    314320 * Find a filesystem instance given the devmap handle
Note: See TracChangeset for help on using the changeset viewer.