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

Re: [PATCH v5 1/4] xen/riscv: add VM space layout


  • To: Julien Grall <julien@xxxxxxx>
  • From: Jan Beulich <jbeulich@xxxxxxxx>
  • Date: Mon, 24 Apr 2023 12:45:14 +0200
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.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=a/n9s3tD3SDmkTWBtMPmGUBXIMQOeezjCi9pYjmZXqk=; b=bLhTyt3zynj7sODffmaz/CcSWqZO280zkZXe/rupvWN7vpq/A9VKbNd59h1j32jeu8KbTHQLn2sM5x50/nM2yLW9eOLQTEN6bIMykG1DAAknsDgujLcIyuzprs+RQi0SWNqggQd5HMTBOLycDXtSGY2eZFDbhvv8firDv2koA+z2XUHdYQ00Pu3UmyEy6c12UNLYbyI2Un6nGsuAECRgmJ845aR6bIMLHjShea2GC4peryZSTwZrB4k1tJO5mqZmaMWQJa9034k40zgvMMd55DyIKgsSZZQOFPCRptGsioHZPJxPNfsD1Dhl2hFmJnkGNay9WkuY8AllCgLQfS5nrA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=KbOcbxh5pYT2gBuKKFol6E5fbwXQE4KLQKejHhYBDhA+tWDybCvBXeCIhGRmAakJx4DJzdKfcnXNYy1QUefFJYNIherrrM1PAu027ty/Wvphp1HNKUNHA1VNtFuBMKY+ptyg0xpM7hRl+TJr5maTDAGPGG6DcOt0UCqN/Ychep32qIOLZrKkIs3K5GR652mCuYt/MoInLpZfZiLaDkDwDTqtOyKMj7IIIlIRiojzwv6ak0rr5p0tofC9jN8eYjNY1+4/c7qarn7+tvvQ1S6+MREiASIqt96OXQo8UkDdy1C+tKIBZggwSYetraMwdFOYMaKwiA3+bA679y7vfGsfaQ==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=suse.com;
  • Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Gianluca Guida <gianluca@xxxxxxxxxxxx>, Bob Eshleman <bobbyeshleman@xxxxxxxxx>, Alistair Francis <alistair.francis@xxxxxxx>, Connor Davis <connojdavis@xxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx, Oleksii <oleksii.kurochko@xxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>
  • Delivery-date: Mon, 24 Apr 2023 10:45:53 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 24.04.2023 12:22, Julien Grall wrote:
> Hi,
> 
> On 24/04/2023 10:33, Jan Beulich wrote:
>> On 21.04.2023 16:41, Oleksii wrote:
>>> On Thu, 2023-04-20 at 14:58 +0200, Jan Beulich wrote:
>>>> On 19.04.2023 17:42, Oleksii Kurochko wrote:
>>>>> + *
>>>>> ===================================================================
>>>>> =========
>>>>> + *    Start addr    |   End addr        |  Size  | VM area
>>>>> description
>>>>> + *
>>>>> ===================================================================
>>>>> =========
>>>>> + * FFFFFFFFC0000000 |  FFFFFFFFC0200000 |  2 MB  | Xen
>>>>> + * FFFFFFFFC0200000 |  FFFFFFFFC0600000 |  4 MB  | FDT
>>>>> + * FFFFFFFFC0600000 |  FFFFFFFFC0800000 |  2 MB  | Fixmap
>>>>
>>>> These are all L2 slot 511 aiui, which may be worth mentioning
>>>> especially since
>>>> the top bits don't match the top bits further down in the table
>>>> (because of the
>>>> aliasing).
>>>
>>> Than I'll add one more column where I'll put slot number
>>>
>>>>
>>>>> + *     .................. unused ..................
>>>>
>>>> This is covering slot 510, which again may be worth mentioning.
>>>>
>>>>> + * 0000003200000000 |  0000007f40000000 | 331 GB | Direct map(L2
>>>>> slot: 200-509)
>>>>> + * 0000003100000000 |  0000003140000000 |  1 GB  | Frametable(L2
>>>>> slot: 196-197)
>>>>
>>>> 1Gb is, if I'm not mistaken, a single L2 slot.
>>> Yeah, it can be misunderstood. I meant [196, 197), so 197 isn't
>>> included. I'll update the table.
>>>
>>>>
>>>> Also assuming a 32-byte struct page_info (I don't think you'll get
>>>> away with
>>>> less than that, when even Arm32 requires this much), there's a
>>>> mismatch
>>>> between direct map and frame table size: With 4k pages, the scaling
>>>> factor
>>>> would be 128 if I'm not mistaken. So perhaps you really mean 3Gb here
>>>> to
>>>> cover for (slightly more than) the 331Gb of memory you mean to be
>>>> able to
>>>> map?
>>> For RV64 page_info size will be 56-byte and 32-byte for RV32 but you
>>> are right it should 3 Gb in that case what will be enough ( taking into
>>> account both available sizes of page_info structure ).
>>
>> As to the plan to it being 56 bytes (i.e. like on Arm): Arm forever has
>> had a 64-bit padding field at the end. My best guess is that the field
>> was introduced to have a 32-byte struct on Arm32. 
> 
> I can't exactly remember. But I would like to rework the struct 
> page_info on Arm64 because...
> 
> But then why
>> artificially increase the struct from 48 to 56 bytes on Arm64? And hence
>> why have the same oddity on RV64?
> 
> 
> ... with 56 bytes, some struct page_info may cross a cache boundary.

I guess that's going to be challenging, unless you mean to go further up
to 64 bytes?

> For 
> RISC-V, I would recommend to make sure the struct page_info will never 
> cross a cache boundary.

Since going up to 64 bytes is wasteful, and going down to 32 bytes likely
isn't going to be easy, sticking to 48 bytes for now would seem reasonable
to me.

Jan



 


Rackspace

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