Re: [PATCH v2 9/9] x86/shadow: adjust TLB flushing in sh_unshadow_for_p2m_change()

2020-11-07 Thread Tim Deegan
At 10:39 +0100 on 06 Nov (1604659168), Jan Beulich wrote: > Accumulating transient state of d->dirty_cpumask in a local variable is > unnecessary here: The flush is fine to make with the dirty set at the > time of the call. With this, move the invocation to a central place at > the end of the

[PATCH v2 9/9] x86/shadow: adjust TLB flushing in sh_unshadow_for_p2m_change()

2020-11-06 Thread Jan Beulich
Accumulating transient state of d->dirty_cpumask in a local variable is unnecessary here: The flush is fine to make with the dirty set at the time of the call. With this, move the invocation to a central place at the end of the function. Signed-off-by: Jan Beulich --- v2: New. ---