backup: Fix spelling error in function name

Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
[FE: fixup patch context]
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
Filip Schauer 2023-09-08 10:49:07 +02:00 committed by Fiona Ebner
parent 6c5563e30b
commit 0ff45eb23e
2 changed files with 6 additions and 6 deletions

View File

@ -586,7 +586,7 @@ index 0000000000..8cbf645b2c
+#endif /* PROXMOX_BACKUP_CLIENT_H */ +#endif /* PROXMOX_BACKUP_CLIENT_H */
diff --git a/pve-backup.c b/pve-backup.c diff --git a/pve-backup.c b/pve-backup.c
new file mode 100644 new file mode 100644
index 0000000000..8ff0d88297 index 0000000000..21441b2f97
--- /dev/null --- /dev/null
+++ b/pve-backup.c +++ b/pve-backup.c
@@ -0,0 +1,1067 @@ @@ -0,0 +1,1067 @@
@ -700,7 +700,7 @@ index 0000000000..8ff0d88297
+ return error_or_canceled; + return error_or_canceled;
+} +}
+ +
+static void pvebackup_add_transfered_bytes(size_t transferred, size_t zero_bytes, size_t reused) +static void pvebackup_add_transferred_bytes(size_t transferred, size_t zero_bytes, size_t reused)
+{ +{
+ qemu_mutex_lock(&backup_state.stat.lock); + qemu_mutex_lock(&backup_state.stat.lock);
+ backup_state.stat.zero_bytes += zero_bytes; + backup_state.stat.zero_bytes += zero_bytes;
@ -761,7 +761,7 @@ index 0000000000..8ff0d88297
+ } + }
+ +
+ qemu_co_mutex_unlock(&backup_state.dump_callback_mutex); + qemu_co_mutex_unlock(&backup_state.dump_callback_mutex);
+ pvebackup_add_transfered_bytes(size, is_zero_block ? size : 0, reused); + pvebackup_add_transferred_bytes(size, is_zero_block ? size : 0, reused);
+ +
+ return size; + return size;
+} +}
@ -819,11 +819,11 @@ index 0000000000..8ff0d88297
+ } else { + } else {
+ if (remaining >= VMA_CLUSTER_SIZE) { + if (remaining >= VMA_CLUSTER_SIZE) {
+ assert(ret == VMA_CLUSTER_SIZE); + assert(ret == VMA_CLUSTER_SIZE);
+ pvebackup_add_transfered_bytes(VMA_CLUSTER_SIZE, zero_bytes, 0); + pvebackup_add_transferred_bytes(VMA_CLUSTER_SIZE, zero_bytes, 0);
+ remaining -= VMA_CLUSTER_SIZE; + remaining -= VMA_CLUSTER_SIZE;
+ } else { + } else {
+ assert(ret == remaining); + assert(ret == remaining);
+ pvebackup_add_transfered_bytes(remaining, zero_bytes, 0); + pvebackup_add_transferred_bytes(remaining, zero_bytes, 0);
+ remaining = 0; + remaining = 0;
+ } + }
+ } + }

View File

@ -175,7 +175,7 @@ index 0000000000..887e998b9e
+ NULL); + NULL);
+} +}
diff --git a/pve-backup.c b/pve-backup.c diff --git a/pve-backup.c b/pve-backup.c
index 8ff0d88297..53f5c5e311 100644 index 21441b2f97..5e5c37e06d 100644
--- a/pve-backup.c --- a/pve-backup.c
+++ b/pve-backup.c +++ b/pve-backup.c
@@ -1060,6 +1060,7 @@ ProxmoxSupportStatus *qmp_query_proxmox_support(Error **errp) @@ -1060,6 +1060,7 @@ ProxmoxSupportStatus *qmp_query_proxmox_support(Error **errp)