migration: Remove unused qemu_file_credit_transfer()
After this change, nothing abuses QEMUFile to account for data transferrefd during migration. Reviewed-by: Leonardo Bras <leobras@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Message-Id: <20230515195709.63843-15-quintela@redhat.com>
This commit is contained in:
parent
2ebe5d4d5a
commit
9f51fe9239
@ -397,11 +397,6 @@ static ssize_t coroutine_mixed_fn qemu_fill_buffer(QEMUFile *f)
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_file_credit_transfer(QEMUFile *f, size_t size)
|
|
||||||
{
|
|
||||||
f->total_transferred += size;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Closes the file
|
/** Closes the file
|
||||||
*
|
*
|
||||||
* Returns negative error value if any error happened on previous operations or
|
* Returns negative error value if any error happened on previous operations or
|
||||||
|
@ -119,14 +119,6 @@ bool qemu_file_buffer_empty(QEMUFile *file);
|
|||||||
*/
|
*/
|
||||||
int coroutine_mixed_fn qemu_peek_byte(QEMUFile *f, int offset);
|
int coroutine_mixed_fn qemu_peek_byte(QEMUFile *f, int offset);
|
||||||
void qemu_file_skip(QEMUFile *f, int size);
|
void qemu_file_skip(QEMUFile *f, int size);
|
||||||
/*
|
|
||||||
* qemu_file_credit_transfer:
|
|
||||||
*
|
|
||||||
* Report on a number of bytes that have been transferred
|
|
||||||
* out of band from the main file object I/O methods. This
|
|
||||||
* accounting information tracks the total migration traffic.
|
|
||||||
*/
|
|
||||||
void qemu_file_credit_transfer(QEMUFile *f, size_t size);
|
|
||||||
int qemu_file_get_error_obj_any(QEMUFile *f1, QEMUFile *f2, Error **errp);
|
int qemu_file_get_error_obj_any(QEMUFile *f1, QEMUFile *f2, Error **errp);
|
||||||
void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err);
|
void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err);
|
||||||
void qemu_file_set_error(QEMUFile *f, int ret);
|
void qemu_file_set_error(QEMUFile *f, int ret);
|
||||||
|
Loading…
Reference in New Issue
Block a user