Ignore:
Timestamp:
2011-10-05T09:35:12Z (13 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3712434
Parents:
cfa1a8a
Message:

Complete mounting skeleton (ported from ext2fs) - some filesystem checks during mount process still missing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_block_group.c

    rcfa1a8a r3711e7e  
    3636 */
    3737
    38 #include "libext4_block_group.h"
     38#include <byteorder.h>
     39#include "libext4.h"
    3940
     41uint64_t ext4_block_group_get_inode_table_first_block(ext4_block_group_t *bg)
     42{
     43        return ((uint64_t)uint32_t_le2host(bg->inode_table_first_hi) << 32) |
     44                        uint32_t_le2host(bg->inode_table_first_lo);
     45}
    4046
    4147/**
Note: See TracChangeset for help on using the changeset viewer.