From: Jan Beulich <jbeulich@suse.com>
To: Carlo Nonato <carlo.nonato@minervasys.tech>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
George Dunlap <george.dunlap@citrix.com>,
Julien Grall <julien@xen.org>,
Stefano Stabellini <sstabellini@kernel.org>, Wei Liu <wl@xen.org>,
Bertrand Marquis <bertrand.marquis@arm.com>,
Michal Orzel <michal.orzel@amd.com>,
Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>,
Marco Solieri <marco.solieri@minervasys.tech>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH v7 10/14] xen: add cache coloring allocator for domains
Date: Thu, 21 Mar 2024 17:03:58 +0100 [thread overview]
Message-ID: <4e1f10e3-c2b5-49b9-830d-e7582c714d43@suse.com> (raw)
In-Reply-To: <CAG+AhRXx-TL_Fto0TevZB5d1gc3iOq9OG8Ev1jTdELf1x4PJXQ@mail.gmail.com>
On 21.03.2024 16:36, Carlo Nonato wrote:
> On Tue, Mar 19, 2024 at 5:43 PM Jan Beulich <jbeulich@suse.com> wrote:
>> On 15.03.2024 11:58, Carlo Nonato wrote:
>>> +static void __init init_color_heap_pages(struct page_info *pg,
>>> + unsigned long nr_pages)
>>> +{
>>> + unsigned int i;
>>> + bool need_scrub = opt_bootscrub == BOOTSCRUB_IDLE;
>>> +
>>> + if ( buddy_alloc_size )
>>> + {
>>> + unsigned long buddy_pages = min(PFN_DOWN(buddy_alloc_size), nr_pages);
>>> +
>>> + init_heap_pages(pg, buddy_pages);
>>
>> There's a corner case where init_heap_pages() would break when passed 0
>> as 2nd argument.
>
> I don't see it. There's just a for-loop that would be skipped in that case...
Look at the first comment in the function and the if() following it. I
don't think that code would work very well when nr_pages == 0.
>>> +static void dump_color_heap(void)
>>> +{
>>> + unsigned int color;
>>> +
>>> + printk("Dumping color heap info\n");
>>> + for ( color = 0; color < get_max_nr_llc_colors(); color++ )
>>> + if ( free_colored_pages[color] > 0 )
>>> + printk("Color heap[%u]: %lu pages\n",
>>> + color, free_colored_pages[color]);
>>> +}
>>
>> While having all of the code above from here outside of any #ifdef is
>> helpful to prevent unintended breakage when changes are made and tested
>> only on non-Arm64 targets, I'd still like to ask: Halfway recent
>> compilers manage to eliminate everything? I'd like to avoid e.g. x86
>> being left with traces of coloring despite not being able at all to use
>> it.
>
> I don't know the answer to this, sorry.
Yet it is important to have.
Jan
next prev parent reply other threads:[~2024-03-21 16:04 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-15 10:58 [PATCH v7 00/14] Arm cache coloring Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 01/14] xen/common: add cache coloring common code Carlo Nonato
2024-03-15 11:39 ` Carlo Nonato
2024-03-19 14:58 ` Jan Beulich
2024-03-21 15:03 ` Carlo Nonato
2024-03-21 15:53 ` Jan Beulich
2024-03-21 17:22 ` Carlo Nonato
2024-03-22 7:25 ` Jan Beulich
2024-03-15 10:58 ` [PATCH v7 02/14] xen/arm: add initial support for LLC coloring on arm64 Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 03/14] xen/arm: permit non direct-mapped Dom0 construction Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 04/14] xen/arm: add Dom0 cache coloring support Carlo Nonato
2024-03-19 15:30 ` Jan Beulich
2024-03-21 15:04 ` Carlo Nonato
2024-03-21 15:57 ` Jan Beulich
2024-03-21 17:31 ` Carlo Nonato
2024-03-22 7:26 ` Jan Beulich
2024-03-27 11:39 ` Carlo Nonato
2024-03-27 11:56 ` Julien Grall
2024-04-05 0:20 ` Stefano Stabellini
2024-03-27 11:57 ` Michal Orzel
2024-03-19 15:45 ` Jan Beulich
2024-03-15 10:58 ` [PATCH v7 05/14] xen: extend domctl interface for cache coloring Carlo Nonato
2024-03-19 15:37 ` Jan Beulich
2024-03-21 15:11 ` Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 06/14] tools: add support for cache coloring configuration Carlo Nonato
2024-03-25 10:55 ` Anthony PERARD
2024-03-25 11:44 ` Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 07/14] xen/arm: add support for cache coloring configuration via device-tree Carlo Nonato
2024-03-19 15:41 ` Jan Beulich
2024-03-21 15:12 ` Carlo Nonato
2024-03-15 10:58 ` [PATCH v7 08/14] xen/page_alloc: introduce preserved page flags macro Carlo Nonato
2024-03-19 15:47 ` Jan Beulich
2024-03-21 16:07 ` Julien Grall
2024-03-21 16:10 ` Julien Grall
2024-03-21 16:22 ` Jan Beulich
2024-03-22 15:07 ` Carlo Nonato
2024-03-25 7:19 ` Jan Beulich
2024-03-26 16:39 ` Carlo Nonato
2024-03-26 17:04 ` Jan Beulich
2024-03-26 21:55 ` Julien Grall
2024-03-27 11:10 ` Carlo Nonato
2024-03-27 13:28 ` Julien Grall
2024-03-27 13:38 ` Jan Beulich
2024-03-27 13:48 ` Julien Grall
2024-03-28 18:21 ` Julien Grall
2024-03-15 10:58 ` [PATCH v7 09/14] xen/page_alloc: introduce page flag to stop buddy merging Carlo Nonato
2024-03-19 15:49 ` Jan Beulich
2024-03-15 10:58 ` [PATCH v7 10/14] xen: add cache coloring allocator for domains Carlo Nonato
2024-03-19 16:43 ` Jan Beulich
2024-03-21 15:36 ` Carlo Nonato
2024-03-21 16:03 ` Jan Beulich [this message]
2024-03-15 10:58 ` [PATCH v7 11/14] xen/arm: use domain memory to allocate p2m page tables Carlo Nonato
2024-03-15 10:59 ` [PATCH v7 12/14] xen/arm: add Xen cache colors command line parameter Carlo Nonato
2024-03-19 15:54 ` Jan Beulich
2024-03-21 15:36 ` Carlo Nonato
2024-03-15 10:59 ` [PATCH v7 13/14] xen/arm: make consider_modules() available for xen relocation Carlo Nonato
2024-03-15 10:59 ` [PATCH v7 14/14] xen/arm: add cache coloring support for Xen Carlo Nonato
2024-03-19 15:58 ` Jan Beulich
2024-03-19 16:15 ` Jan Beulich
2024-03-19 16:03 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4e1f10e3-c2b5-49b9-830d-e7582c714d43@suse.com \
--to=jbeulich@suse.com \
--cc=Volodymyr_Babchuk@epam.com \
--cc=andrew.cooper3@citrix.com \
--cc=bertrand.marquis@arm.com \
--cc=carlo.nonato@minervasys.tech \
--cc=george.dunlap@citrix.com \
--cc=julien@xen.org \
--cc=marco.solieri@minervasys.tech \
--cc=michal.orzel@amd.com \
--cc=sstabellini@kernel.org \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.