Re: [Xen-devel] [PATCH v3 7/9] x86/mm: make sure there is one exit path for modify_xen_mappings

2019-11-20 Thread Jan Beulich
On 02.10.2019 19:16, Hongyan Xia wrote: > @@ -5468,7 +5469,11 @@ int modify_xen_mappings(unsigned long s, unsigned long > e, unsigned int nf) > /* PAGE1GB: shatter the superpage and fall through. */ > l2t = alloc_xen_pagetable(); > if ( !l2t ) > -

[Xen-devel] [PATCH v3 7/9] x86/mm: make sure there is one exit path for modify_xen_mappings

2019-10-02 Thread Hongyan Xia
From: Wei Liu We will soon need to handle dynamically mapping / unmapping page tables in the said function. No functional change. Signed-off-by: Wei Liu --- xen/arch/x86/mm.c | 18 +++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/xen/arch/x86/mm.c