aboutsummaryrefslogtreecommitdiffstats
path: root/tests/zfs-tests/cmd/mmap_sync.c
diff options
context:
space:
mode:
authorRichard Yao <[email protected]>2022-09-23 19:52:03 -0400
committerGitHub <[email protected]>2022-09-23 16:52:03 -0700
commit2a493a4c7127258b14c39e8c71a9d6f01167c5cd (patch)
tree3fcf8e9b9a84ec0dac5ae3e306524f6c02fcce7e /tests/zfs-tests/cmd/mmap_sync.c
parentd25153d55568afc92a7b3ec8329d7fbad7382a80 (diff)
Fix unchecked return values and unused return values
Coverity complained about unchecked return values and unused values that turned out to be unused return values. Different approaches were used to handle the different cases of unchecked return values: * cmd/zdb/zdb.c: VERIFY0 was used in one place since the existing code had no error handling. An error message was printed in another to match the rest of the code. * cmd/zed/agents/zfs_retire.c: We dismiss the return value with `(void)` because the value is expected to be potentially unset. * cmd/zpool_influxdb/zpool_influxdb.c: We dismiss the return value with `(void)` because the values are expected to be potentially unset. * cmd/ztest.c: VERIFY0 was used since we want failures if something goes wrong in ztest. * module/zfs/dsl_dir.c: We dismiss the return value with `(void)` because there is no guarantee that the zap entry will always be there. For example, old pools imported readonly would not have it and we do not want to fail here because of that. * module/zfs/zfs_fm.c: `fnvlist_add_*()` was used since the allocations sleep and thus can never fail. * module/zfs/zvol.c: We dismiss the return value with `(void)` because we do not need it. This matches what is already done in the analogous `zfs_replay_write2()`. * tests/zfs-tests/cmd/draid.c: We suppress one return value with `(void)` since the code handles errors already. The other return value is handled by switching to `fnvlist_lookup_uint8_array()`. * tests/zfs-tests/cmd/file/file_fadvise.c: We add error handling. * tests/zfs-tests/cmd/mmap_sync.c: We add error handling for munmap, but ignore failures on remove() with (void) since it is expected to be able to fail. * tests/zfs-tests/cmd/mmapwrite.c: We add error handling. As for unused return values, they were all in places where there was error handling, so logic was added to handle the return values. Reviewed-by: Alexander Motin <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Richard Yao <[email protected]> Closes #13920
Diffstat (limited to 'tests/zfs-tests/cmd/mmap_sync.c')
-rw-r--r--tests/zfs-tests/cmd/mmap_sync.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/zfs-tests/cmd/mmap_sync.c b/tests/zfs-tests/cmd/mmap_sync.c
index 0e4bba37d..618f1284a 100644
--- a/tests/zfs-tests/cmd/mmap_sync.c
+++ b/tests/zfs-tests/cmd/mmap_sync.c
@@ -32,7 +32,7 @@
static void
cleanup(char *file)
{
- remove(file);
+ (void) remove(file);
}
int
@@ -125,7 +125,8 @@ main(int argc, char *argv[])
elapsed += ((t2.tv_usec - t1.tv_usec) / 1000.0);
if (elapsed > max_msync_time_ms) {
fprintf(stderr, "slow msync: %f ms\n", elapsed);
- munmap(ptr, LEN);
+ if (munmap(ptr, LEN) != 0)
+ perror("munmap");
cleanup(file);
return (1);
}