[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH for-4.18] x86/mem_sharing: add missing m2p entry when mapping shared_info page


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Henry Wang <Henry.Wang@xxxxxxx>
  • Date: Fri, 20 Oct 2023 01:14:26 +0000
  • Accept-language: zh-CN, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=eUrcSsiuOFjn2at/QvmhxV9wxGnqRPGF9W6A69+li0E=; b=WZ1r+XmuNB9b9tTUxoFpObBLQKYHh3qK5FSTwoTPDOjsGRJ0fZqUMYrW9sN8sC6mAKniF0KRIULQjsh2xxO24Z6T5cFh7L60gOOvN2d91K3m09EautucefZY+2Wu9+Bzxh6lhqlbDbBfV8i0sae8zjm12oMY28s7kp/rI4vESo4dF/xTH64Ikr6vwVNqrogcZsTSzP1kXWGXKZHtuAkra0yzVaFYtDuUAqqkHyT8Z78Nss8+m7CjTDCBA/91uKQ+FoJnosph0+Vrvd7mQmUZyN+dme+qQw1pQLl+RB2o8T0JnNUIHSne5dV320DuU2rxCNMf2brLONFNkBVHvupwlA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=CxIk3+F2HUxKBNE6lpdPyoLeuYedziUMhJs7qvLtwfbIMhCYkzQhhA6BjH6rBk0BD/P728FPK4lqXPCGBmULuNCjiRqrcvZsxuKkLSv7GchE25svcT/Q7pR33I51L8duMKbaA8jbOPbiB049rSEQPOJ6r71zBQgIQOGHpJ3F4H/med+0gMf8eZ0lcChYvq0sKJmfNBEh2VDT/oKt8qhuQgmjbKx0GQ4NNDSNZRweY/B4v0IVYWrmhwdOS3Atnypm5VSTC+bi76gfDYI+eVkpg5bJrCkXa8t5GPytQ8RsSZQOTKEOGht421lGfXZzs97VI9wSwrY50rZtKkwOcCxQXw==
  • Authentication-results-original: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Cc: Tamas K Lengyel <tamas@xxxxxxxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
  • Delivery-date: Fri, 20 Oct 2023 01:14:45 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Nodisclaimer: true
  • Original-authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Thread-index: AQHaArGX/86ib4UWxEGYIxLP3yyU+LBRyAEAgAAYFIA=
  • Thread-topic: [PATCH for-4.18] x86/mem_sharing: add missing m2p entry when mapping shared_info page

Hi all,

> On Oct 20, 2023, at 07:48, Andrew Cooper <andrew.cooper3@xxxxxxxxxx> wrote:
> 
> On 18/10/2023 9:02 am, Tamas K Lengyel wrote:
>> When mapping in the shared_info page to a fork the m2p entry wasn't set
>> resulting in the shared_info being reset even when the fork reset was called
>> with only reset_state and not reset_memory. This results in an extra
>> unnecessary TLB flush.
>> 
>> Fixes: 1a0000ac775 ("mem_sharing: map shared_info page to same gfn during 
>> fork")
>> Signed-off-by: Tamas K Lengyel <tamas@xxxxxxxxxxxxx>
>> ---
>> xen/arch/x86/mm/mem_sharing.c | 2 ++
>> 1 file changed, 2 insertions(+)
>> 
>> diff --git a/xen/arch/x86/mm/mem_sharing.c b/xen/arch/x86/mm/mem_sharing.c
>> index 94b6b782ef..142258f16a 100644
>> --- a/xen/arch/x86/mm/mem_sharing.c
>> +++ b/xen/arch/x86/mm/mem_sharing.c
>> @@ -1847,6 +1847,8 @@ static int copy_special_pages(struct domain *cd, 
>> struct domain *d)
>>                                 p2m_ram_rw, p2m->default_access, -1);
>>             if ( rc )
>>                 return rc;
>> +
>> +            set_gpfn_from_mfn(mfn_x(new_mfn), gfn_x(old_gfn));
>>         }
>>     }
>> 
> 
> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
> 
> CC Henry.  This needs a view about a release ack.
> 
> Cons: it's been broken since Xen 4.14 and we're very deep into the 4.18
> code freeze.
> 
> Pros: it's a bug and would clearly qualify for backport, and is in a
> niche feature so isn't plausibly going to adversely affect other users.

Given the fact that it will be backported anyway, I had the same discussion 
with Juergen
in his thread [1]. So if we can bear the risk of delaying merging this patch 
for a week,
would it be ok to wait for the release and backport this patch to the stable 
tree? Thanks!

[1] 
https://lore.kernel.org/xen-devel/83E6DCF6-926C-43A6-94D2-EB3B2C444309@xxxxxxx/

Kind regards,
Henry

> 
> ~Andrew




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.