[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] x86/shadow: make 1-bit-disable match 1-bit-enable
shadow_one_bit_enable() sets PG_SH_enable (if not already set of course) in addition to the bit being requested. Make shadow_one_bit_disable() behave similarly - clear PG_SH_enable if that's the only bit remaining. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- a/xen/arch/x86/mm/shadow/common.c +++ b/xen/arch/x86/mm/shadow/common.c @@ -3383,7 +3383,10 @@ static int shadow_one_bit_disable(struct } /* Update the bits */ - sh_new_mode(d, d->arch.paging.mode & ~mode); + mode = d->arch.paging.mode & ~mode; + if ( mode == PG_SH_enable ) + mode = 0; + sh_new_mode(d, mode); if ( d->arch.paging.mode == 0 ) { /* Get this domain off shadows */ _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |