Changeset 3345b86 in mainline for uspace/lib/ext4/include


Ignore:
Timestamp:
2017-05-10T17:42:12Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fcb0d76
Parents:
f066a87
Message:

Libext4 went the wrong direction with filename prefixing.

Location:
uspace/lib/ext4/include/ext4
Files:
13 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/include/ext4/balloc.h

    rf066a87 r3345b86  
    3535
    3636#include <sys/types.h>
    37 #include "libext4_types.h"
     37#include "types.h"
    3838
    3939extern int ext4_balloc_free_block(ext4_inode_ref_t *, uint32_t);
  • uspace/lib/ext4/include/ext4/block_group.h

    rf066a87 r3345b86  
    3737#include <block.h>
    3838#include <sys/types.h>
    39 #include "libext4_types.h"
     39#include "types.h"
    4040
    4141extern uint64_t ext4_block_group_get_block_bitmap(ext4_block_group_t *,
  • uspace/lib/ext4/include/ext4/directory.h

    rf066a87 r3345b86  
    3535#define LIBEXT4_LIBEXT4_DIRECTORY_H_
    3636
    37 #include "libext4_types.h"
     37#include "ext4/types.h"
    3838
    3939extern uint32_t ext4_directory_entry_ll_get_inode(ext4_directory_entry_ll_t *);
  • uspace/lib/ext4/include/ext4/directory_index.h

    rf066a87 r3345b86  
    3434#define LIBEXT4_LIBEXT4_DIRECTORY_INDEX_H_
    3535
    36 #include "libext4_types.h"
     36#include "ext4/types.h"
    3737
    3838extern uint8_t ext4_directory_dx_root_info_get_hash_version(
  • uspace/lib/ext4/include/ext4/extent.h

    rf066a87 r3345b86  
    3434#define LIBEXT4_LIBEXT4_EXTENT_H_
    3535
    36 #include "libext4_types.h"
     36#include "ext4/types.h"
    3737
    3838extern uint32_t ext4_extent_get_first_block(ext4_extent_t *);
  • uspace/lib/ext4/include/ext4/filesystem.h

    rf066a87 r3345b86  
    3636
    3737#include <block.h>
    38 #include "libext4_types.h"
     38#include "ext4/types.h"
    3939
    4040extern int ext4_filesystem_init(ext4_filesystem_t *, service_id_t,
  • uspace/lib/ext4/include/ext4/hash.h

    rf066a87 r3345b86  
    3535
    3636#include <sys/types.h>
    37 #include "libext4_types.h"
     37#include "ext4/types.h"
    3838
    3939extern int ext4_hash_string(ext4_hash_info_t *, int, const char *);
  • uspace/lib/ext4/include/ext4/ialloc.h

    rf066a87 r3345b86  
    3434#define LIBEXT4_LIBEXT4_IALLOC_H_
    3535
    36 #include "libext4_types.h"
     36#include "ext4/types.h"
    3737
    3838extern int ext4_ialloc_free_inode(ext4_filesystem_t *, uint32_t, bool);
  • uspace/lib/ext4/include/ext4/inode.h

    rf066a87 r3345b86  
    3737#include <block.h>
    3838#include <sys/types.h>
    39 #include "libext4_types.h"
     39#include "ext4/types.h"
    4040
    4141extern uint32_t ext4_inode_get_mode(ext4_superblock_t *, ext4_inode_t *);
  • uspace/lib/ext4/include/ext4/libext4.h

    rf066a87 r3345b86  
    3434#define LIBEXT4_LIBEXT4_H_
    3535
    36 #include "libext4_balloc.h"
    37 #include "libext4_bitmap.h"
    38 #include "libext4_block_group.h"
    39 #include "libext4_directory.h"
    40 #include "libext4_directory_index.h"
    41 #include "libext4_extent.h"
    42 #include "libext4_filesystem.h"
    43 #include "libext4_hash.h"
    44 #include "libext4_ialloc.h"
    45 #include "libext4_inode.h"
    46 #include "libext4_superblock.h"
    47 #include "libext4_types.h"
     36#include "ext4/balloc.h"
     37#include "ext4/bitmap.h"
     38#include "ext4/block_group.h"
     39#include "ext4/directory.h"
     40#include "ext4/directory_index.h"
     41#include "ext4/extent.h"
     42#include "ext4/filesystem.h"
     43#include "ext4/hash.h"
     44#include "ext4/ialloc.h"
     45#include "ext4/inode.h"
     46#include "ext4/superblock.h"
     47#include "ext4/types.h"
    4848
    4949#include <stdio.h>
  • uspace/lib/ext4/include/ext4/superblock.h

    rf066a87 r3345b86  
    3737#include <block.h>
    3838#include <sys/types.h>
    39 #include "libext4_types.h"
     39#include "ext4/types.h"
    4040
    4141extern uint32_t ext4_superblock_get_inodes_count(ext4_superblock_t *);
Note: See TracChangeset for help on using the changeset viewer.