Changeset 2175178 in mainline for uspace/lib/ext4/include


Ignore:
Timestamp:
2018-10-03T08:34:52Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b209135
Parents:
174156fd
git-author:
Jiri Svoboda <jiri@…> (2018-10-02 21:31:25)
git-committer:
Jiri Svoboda <jiri@…> (2018-10-03 08:34:52)
Message:

Allow creating ext2 dynamic revision. Allow choosing ext filesystem version by mkext4 argument. Fix support for filesystems without filetype feature.

Location:
uspace/lib/ext4/include/ext4
Files:
1 added
2 edited

Legend:

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

    r174156fd r2175178  
    3737
    3838#include <block.h>
     39#include "ext4/cfg.h"
    3940#include "ext4/fstypes.h"
    4041#include "ext4/types.h"
    4142
    4243extern errno_t ext4_filesystem_probe(service_id_t);
    43 extern errno_t ext4_filesystem_create(service_id_t);
     44extern errno_t ext4_filesystem_create(ext4_cfg_ver_t, service_id_t);
    4445extern errno_t ext4_filesystem_open(ext4_instance_t *, service_id_t,
    4546    enum cache_mode, aoff64_t *, ext4_filesystem_t **);
  • uspace/lib/ext4/include/ext4/superblock.h

    r174156fd r2175178  
    3939#include <stdint.h>
    4040#include <uuid.h>
     41#include "ext4/cfg.h"
    4142#include "ext4/types.h"
    4243
     
    164165extern uint32_t ext4_superblock_get_inodes_in_group(ext4_superblock_t *,
    165166    uint32_t);
    166 extern errno_t ext4_superblock_create(size_t, uint64_t, ext4_superblock_t **);
     167extern errno_t ext4_superblock_create(size_t, uint64_t, ext4_cfg_ver_t,
     168    ext4_superblock_t **);
    167169extern uint32_t ext4_superblock_get_group_backup_blocks(ext4_superblock_t *,
    168170    uint32_t);
Note: See TracChangeset for help on using the changeset viewer.