diff options
author | Stefan Brüns | 2016-11-06 18:33:57 +0100 |
---|---|---|
committer | Tom Rini | 2016-11-21 14:07:27 -0500 |
commit | 66a47ff2d8f037e1e9d641623257894a9975c325 (patch) | |
tree | e88226f6c864e3916648c4ce09ccd0af9b194a37 /include/ext4fs.h | |
parent | f81db56f2fd6dc16efeaec2961121244765a1f11 (diff) |
ext4: Allow reading files with non-zero offset, clamp read len
Support was already implemented, but not hooked up. This fixes several
fails in the test cases.
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'include/ext4fs.h')
-rw-r--r-- | include/ext4fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ext4fs.h b/include/ext4fs.h index 965cd9e9c50..bb556391072 100644 --- a/include/ext4fs.h +++ b/include/ext4fs.h @@ -135,7 +135,7 @@ int ext4_write_file(const char *filename, void *buf, loff_t offset, loff_t len, struct ext_filesystem *get_fs(void); int ext4fs_open(const char *filename, loff_t *len); -int ext4fs_read(char *buf, loff_t len, loff_t *actread); +int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread); int ext4fs_mount(unsigned part_length); void ext4fs_close(void); void ext4fs_reinit_global(void); |