aboutsummaryrefslogtreecommitdiff
path: root/block/backup.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2018-05-24 15:26:10 +0200
committerKevin Wolf <kwolf@redhat.com>2018-05-30 13:31:01 +0200
commit1266c9b9f5fa05877b979eece5963a2bd99c3bfd (patch)
tree348fa8501283cccf4a62ace8e262ca6bef6c1939 /block/backup.c
parent4a5f2779bad769184550869931937acd0707ec3b (diff)
downloadqemu-1266c9b9f5fa05877b979eece5963a2bd99c3bfd.zip
qemu-1266c9b9f5fa05877b979eece5963a2bd99c3bfd.tar.gz
qemu-1266c9b9f5fa05877b979eece5963a2bd99c3bfd.tar.bz2
job: Add error message for failing jobs
So far we relied on job->ret and strerror() to produce an error message for failed jobs. Not surprisingly, this tends to result in completely useless messages. This adds a Job.error field that can contain an error string for a failing job, and a parameter to job_completed() that sets the field. As a default, if NULL is passed, we continue to use strerror(job->ret). All existing callers are changed to pass NULL. They can be improved in separate patches. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com>
Diffstat (limited to 'block/backup.c')
-rw-r--r--block/backup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/backup.c b/block/backup.c
index 4e228e9..5661435 100644
--- a/block/backup.c
+++ b/block/backup.c
@@ -321,7 +321,7 @@ static void backup_complete(Job *job, void *opaque)
{
BackupCompleteData *data = opaque;
- job_completed(job, data->ret);
+ job_completed(job, data->ret, NULL);
g_free(data);
}