fileio: fileio_size() can now fail
Part of making the fileio API more robust. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
@@ -180,7 +180,13 @@ COMMAND_HELPER(nand_fileio_parse_args, struct nand_fileio_state *state,
|
||||
return retval;
|
||||
|
||||
if (!need_size)
|
||||
state->size = fileio_size(&state->fileio);
|
||||
{
|
||||
int filesize;
|
||||
retval = fileio_size(&state->fileio, &filesize);
|
||||
if (retval != ERROR_OK)
|
||||
return retval;
|
||||
state->size = filesize;
|
||||
}
|
||||
|
||||
*dev = nand;
|
||||
|
||||
|
||||
@@ -388,9 +388,14 @@ COMMAND_HANDLER(handle_nand_dump_command)
|
||||
|
||||
if (nand_fileio_finish(&s) == ERROR_OK)
|
||||
{
|
||||
int filesize;
|
||||
retval = fileio_size(&s.fileio, &filesize);
|
||||
if (retval != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
command_print(CMD_CTX, "dumped %ld bytes in %fs (%0.3f KiB/s)",
|
||||
(long)fileio_size(&s.fileio), duration_elapsed(&s.bench),
|
||||
duration_kbps(&s.bench, fileio_size(&s.fileio)));
|
||||
(long)filesize, duration_elapsed(&s.bench),
|
||||
duration_kbps(&s.bench, filesize));
|
||||
}
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user