1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

linux_mtd: check ioctl() return value properly

Make the linux_mtd driver treat any negative return value from the
MEMERASE ioctl as an error. Previously it only treated -1 as an error.

BUG=b:213561594,b:210973586,b:182223106
BRANCH=none
TEST=builds

Change-Id: I40cfbdee2ab608fbe6c17d9cac6ec53ff224d9a4
Signed-off-by: Nikolai Artemiev <nartemiev@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/60996
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:
Nikolai Artemiev 2022-01-11 18:26:48 +11:00 committed by Edward O'Callaghan
parent f31bb81de1
commit 89c73b5a74

View File

@ -286,9 +286,11 @@ static int linux_mtd_erase(struct flashctx *flash,
.length = data->erasesize,
};
if (ioctl(fileno(data->dev_fp), MEMERASE, &erase_info) == -1) {
msg_perr("%s: ioctl: %s\n", __func__, strerror(errno));
return 1;
int ret = ioctl(fileno(data->dev_fp), MEMERASE, &erase_info);
if (ret < 0) {
msg_perr("%s: MEMERASE ioctl call returned %d, error: %s\n",
__func__, ret, strerror(errno));
return 1;
}
}