diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2023-07-25 16:30:51 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-07-25 16:30:52 +0100 |
commit | 0b58dc456191042dc3b84aa2b80619b71f8b1e3d (patch) | |
tree | 89c1759f52edca598403018fd82ae23de3798c46 /migration | |
parent | d59f0c92141842bab95f26d6a7847b2523a604d4 (diff) | |
parent | ff62c210165cf61b15f18c8a9835a5a5ce6c5a53 (diff) | |
download | qemu-0b58dc456191042dc3b84aa2b80619b71f8b1e3d.zip qemu-0b58dc456191042dc3b84aa2b80619b71f8b1e3d.tar.gz qemu-0b58dc456191042dc3b84aa2b80619b71f8b1e3d.tar.bz2 |
Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging
trivial-patches 25-07-2023
# -----BEGIN PGP SIGNATURE-----
#
# iQFDBAABCAAtFiEEe3O61ovnosKJMUsicBtPaxppPlkFAmS/2vgPHG1qdEB0bHMu
# bXNrLnJ1AAoJEHAbT2saaT5ZT6MH/j5L3P9yLV6TqW+DkhCppbmBygqxz2SbQjwl
# dVVfSLpJNbtpvLfEnvpb+ms+ZdaOCGj8IofAVf9w0VaIYJFP1srFphY/1x+RYVnw
# kDjCLzuLNSCAdCV2HPqsrMKzdFctZ/MfK+QzfcGik9IvmCNPYWOhpmevs+xAIEJd
# b0xk152zy2fIIC3vKK+3KcM7MFkqZWJ6z0pzUZAyEBS+aQyuZNPJ/cO8xMXotbP2
# jqv12SNGV2GLH1acvsd8GQwDB9MamstB4r8NWpSpT/AyPwOgmMR+j5B8a/WEBJCs
# OcEW/pEyrumSygqf9z01YoNJQUCSvSpg5aq4+S2cRDslmUgFDmw=
# =wCoQ
# -----END PGP SIGNATURE-----
# gpg: Signature made Tue 25 Jul 2023 15:23:52 BST
# gpg: using RSA key 7B73BAD68BE7A2C289314B22701B4F6B1A693E59
# gpg: issuer "mjt@tls.msk.ru"
# gpg: Good signature from "Michael Tokarev <mjt@tls.msk.ru>" [full]
# gpg: aka "Michael Tokarev <mjt@corpit.ru>" [full]
# gpg: aka "Michael Tokarev <mjt@debian.org>" [full]
# Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D 4324 457C E0A0 8044 65C5
# Subkey fingerprint: 7B73 BAD6 8BE7 A2C2 8931 4B22 701B 4F6B 1A69 3E59
* tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu:
qapi: Correct "eg." to "e.g." in documentation
hw/pci: add comment to explain checking for available function 0 in pci hotplug
target/tricore: Rename tricore_feature
hw/9pfs: spelling fixes
other architectures: spelling fixes
arm: spelling fixes
s390x: spelling fixes
migration: spelling fixes
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'migration')
-rw-r--r-- | migration/migration-stats.c | 2 | ||||
-rw-r--r-- | migration/migration.h | 4 | ||||
-rw-r--r-- | migration/multifd-zlib.c | 2 | ||||
-rw-r--r-- | migration/multifd-zstd.c | 2 | ||||
-rw-r--r-- | migration/multifd.c | 2 | ||||
-rw-r--r-- | migration/savevm.c | 2 | ||||
-rw-r--r-- | migration/trace-events | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/migration/migration-stats.c b/migration/migration-stats.c index f98c826..095d6d7 100644 --- a/migration/migration-stats.c +++ b/migration/migration-stats.c @@ -48,7 +48,7 @@ uint64_t migration_rate_get(void) void migration_rate_set(uint64_t limit) { /* - * 'limit' is per second. But we check it each BUFER_DELAY miliseconds. + * 'limit' is per second. But we check it each BUFFER_DELAY milliseconds. */ stat64_set(&mig_stats.rate_limit_max, limit / XFER_LIMIT_RATIO); } diff --git a/migration/migration.h b/migration/migration.h index b7c8b67..6eea18d 100644 --- a/migration/migration.h +++ b/migration/migration.h @@ -134,7 +134,7 @@ struct MigrationIncomingState { /* * Always set by the main vm load thread only, but can be read by the * postcopy preempt thread. "volatile" makes sure all reads will be - * uptodate across cores. + * up-to-date across cores. */ volatile PreemptThreadStatus preempt_thread_status; /* @@ -409,7 +409,7 @@ struct MigrationState { * channel itself. * * - postcopy preempt channel will be created at the switching phase - * from precopy -> postcopy (to avoid race condtion of misordered + * from precopy -> postcopy (to avoid race condition of misordered * creation of channels). * * NOTE: See message-id <ZBoShWArKDPpX/D7@work-vm> on qemu-devel diff --git a/migration/multifd-zlib.c b/migration/multifd-zlib.c index 8170125..37ce486 100644 --- a/migration/multifd-zlib.c +++ b/migration/multifd-zlib.c @@ -57,7 +57,7 @@ static int zlib_send_setup(MultiFDSendParams *p, Error **errp) err_msg = "deflate init failed"; goto err_free_z; } - /* This is the maxium size of the compressed buffer */ + /* This is the maximum size of the compressed buffer */ z->zbuff_len = compressBound(MULTIFD_PACKET_SIZE); z->zbuff = g_try_malloc(z->zbuff_len); if (!z->zbuff) { diff --git a/migration/multifd-zstd.c b/migration/multifd-zstd.c index d1d29e7..b471daa 100644 --- a/migration/multifd-zstd.c +++ b/migration/multifd-zstd.c @@ -68,7 +68,7 @@ static int zstd_send_setup(MultiFDSendParams *p, Error **errp) p->id, ZSTD_getErrorName(res)); return -1; } - /* This is the maxium size of the compressed buffer */ + /* This is the maximum size of the compressed buffer */ z->zbuff_len = ZSTD_compressBound(MULTIFD_PACKET_SIZE); z->zbuff = g_try_malloc(z->zbuff_len); if (!z->zbuff) { diff --git a/migration/multifd.c b/migration/multifd.c index 3387d82..0e3ae87 100644 --- a/migration/multifd.c +++ b/migration/multifd.c @@ -878,7 +878,7 @@ static void multifd_new_send_channel_cleanup(MultiFDSendParams *p, qemu_sem_post(&p->sem_sync); /* * Although multifd_send_thread is not created, but main migration - * thread neet to judge whether it is running, so we need to mark + * thread need to judge whether it is running, so we need to mark * its status. */ p->quit = true; diff --git a/migration/savevm.c b/migration/savevm.c index 95c2abf4..51e40e3 100644 --- a/migration/savevm.c +++ b/migration/savevm.c @@ -117,7 +117,7 @@ static struct mig_cmd_args { * The format of arguments is depending on postcopy mode: * - postcopy RAM only * uint64_t host page size - * uint64_t taget page size + * uint64_t target page size * * - postcopy RAM and postcopy dirty bitmaps * format is the same as for postcopy RAM only diff --git a/migration/trace-events b/migration/trace-events index 5259c10..4e43fe2 100644 --- a/migration/trace-events +++ b/migration/trace-events @@ -184,7 +184,7 @@ source_return_path_thread_shut(uint32_t val) "0x%x" source_return_path_thread_resume_ack(uint32_t v) "%"PRIu32 source_return_path_thread_switchover_acked(void) "" migration_thread_low_pending(uint64_t pending) "%" PRIu64 -migrate_transferred(uint64_t tranferred, uint64_t time_spent, uint64_t bandwidth, uint64_t size) "transferred %" PRIu64 " time_spent %" PRIu64 " bandwidth %" PRIu64 " max_size %" PRId64 +migrate_transferred(uint64_t transferred, uint64_t time_spent, uint64_t bandwidth, uint64_t size) "transferred %" PRIu64 " time_spent %" PRIu64 " bandwidth %" PRIu64 " max_size %" PRId64 process_incoming_migration_co_end(int ret, int ps) "ret=%d postcopy-state=%d" process_incoming_migration_co_postcopy_end_main(void) "" postcopy_preempt_enabled(bool value) "%d" |