mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
Fix some comment spelling errors.
Signed-off-by: Cameron Esfahani <dirty@apple.com> Message-Id: <086c197db928384b8697edfa64755e2cb46c8100.1575685843.git.dirty@apple.com> Reviewed-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
7529a79607
commit
7332a4a468
1 changed files with 4 additions and 4 deletions
|
@ -261,7 +261,7 @@ static int cpu_pre_save(void *opaque)
|
||||||
* intercepted anymore.
|
* intercepted anymore.
|
||||||
*
|
*
|
||||||
* Furthermore, when a L2 exception is intercepted by L1
|
* Furthermore, when a L2 exception is intercepted by L1
|
||||||
* hypervisor, it's exception payload (CR2/DR6 on #PF/#DB)
|
* hypervisor, its exception payload (CR2/DR6 on #PF/#DB)
|
||||||
* should not be set yet in the respective vCPU register.
|
* should not be set yet in the respective vCPU register.
|
||||||
* Thus, in case an exception is pending, it is
|
* Thus, in case an exception is pending, it is
|
||||||
* important to save the exception payload seperately.
|
* important to save the exception payload seperately.
|
||||||
|
@ -271,9 +271,9 @@ static int cpu_pre_save(void *opaque)
|
||||||
* distinguish between a pending and injected exception
|
* distinguish between a pending and injected exception
|
||||||
* and we don't need to store seperately the exception payload.
|
* and we don't need to store seperately the exception payload.
|
||||||
*
|
*
|
||||||
* In order to preserve better backwards-compatabile migration,
|
* In order to preserve better backwards-compatible migration,
|
||||||
* convert a pending exception to an injected exception in
|
* convert a pending exception to an injected exception in
|
||||||
* case it is not important to distingiush between them
|
* case it is not important to distinguish between them
|
||||||
* as described above.
|
* as described above.
|
||||||
*/
|
*/
|
||||||
if (env->exception_pending && !(env->hflags & HF_GUEST_MASK)) {
|
if (env->exception_pending && !(env->hflags & HF_GUEST_MASK)) {
|
||||||
|
@ -415,7 +415,7 @@ static bool exception_info_needed(void *opaque)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* It is important to save exception-info only in case
|
* It is important to save exception-info only in case
|
||||||
* we need to distingiush between a pending and injected
|
* we need to distinguish between a pending and injected
|
||||||
* exception. Which is only required in case there is a
|
* exception. Which is only required in case there is a
|
||||||
* pending exception and vCPU is running L2.
|
* pending exception and vCPU is running L2.
|
||||||
* For more info, refer to comment in cpu_pre_save().
|
* For more info, refer to comment in cpu_pre_save().
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue