xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@arm.com>
To: Jan Beulich <JBeulich@suse.com>,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: tim@xen.org, sstabellini@kernel.org, wei.liu2@citrix.com,
	George.Dunlap@eu.citrix.com, andrew.cooper3@citrix.com,
	ian.jackson@eu.citrix.com, xen-devel@lists.xen.org
Subject: Re: [PATCH v7 2/9] mm: Place unscrubbed pages at the end of pagelist
Date: Tue, 15 Aug 2017 15:52:42 +0100	[thread overview]
Message-ID: <1874df12-a735-8b35-a3e3-df82ec986b9a@arm.com> (raw)
In-Reply-To: <59932697020000780016FF4A@prv-mh.provo.novell.com>

Hi Jan,

On 15/08/17 15:51, Jan Beulich wrote:
>>>> On 15.08.17 at 16:41, <boris.ostrovsky@oracle.com> wrote:
>> On 08/15/2017 04:18 AM, Jan Beulich wrote:
>>>>>> On 14.08.17 at 16:29, <boris.ostrovsky@oracle.com> wrote:
>>>> On 08/14/2017 06:37 AM, Jan Beulich wrote:
>>>>>>>> On 08.08.17 at 23:45, <boris.ostrovsky@oracle.com> wrote:
>>>>>> --- a/xen/include/asm-x86/mm.h
>>>>>> +++ b/xen/include/asm-x86/mm.h
>>>>>> @@ -88,7 +88,15 @@ struct page_info
>>>>>>          /* Page is on a free list: ((count_info & PGC_count_mask) == 0). */
>>>>>>          struct {
>>>>>>              /* Do TLBs need flushing for safety before next page use? */
>>>>>> -            bool_t need_tlbflush;
>>>>>> +            bool need_tlbflush:1;
>>>>>> +
>>>>>> +            /*
>>>>>> +             * Index of the first *possibly* unscrubbed page in the buddy.
>>>>>> +             * One more bit than maximum possible order to accommodate
>>>>>> +             * INVALID_DIRTY_IDX.
>>>>>> +             */
>>>>>> +#define INVALID_DIRTY_IDX ((1UL << (MAX_ORDER + 1)) - 1)
>>>>>> +            unsigned long first_dirty:MAX_ORDER + 1;
>>>>>>          } free;
>>>>> I think generated code will be better with the two fields swapped:
>>>>> That way reading first_dirty won't involve a shift, and accessing a
>>>>> single bit doesn't require shifts at all on many architectures.
>>>> Ok, I will then keep need_tlbflush as the last field so the final struct
>>>> (as defined in patch 7) will look like
>>>>
>>>> struct {
>>>>         unsigned long first_dirty:MAX_ORDER + 1;
>>>>         unsigned long scrub_state:2;
>>>>         bool need_tlbflush:1;
>>>> };
>>> Hmm, actually - why do you need bitfields on the x86 side at all?
>>> They're needed for 32-bit architectures only, 64-bit ones ought
>>> to be fine with
>>>
>>> struct {
>>>         unsigned int first_dirty;
>>>         bool need_tlbflush;
>>>         uint8_t scrub_state;
>>> };
>>
>> IIRC it was exactly because of ARM32 and at some point you suggested to
>> switch both x86 and ARM to bitfields.
>
> I don't recall for sure whether I had asked for the change to be done
> uniformly; it was certainly ARM32 that triggered me notice the
> structure size change in your original version.
>
>>> (plus a suitable BUILD_BUG_ON() to make sure first_dirty has
>>> at least MAX_ORDER + 1 bits). The ARM maintainers will know
>>> whether they would want to also differentiate ARM32 and
>>> ARM64 here.
>>
>> Isn't using bitfields the only possibility for 32-bit? We can't fit
>> first_dirty into 2 bytes.
>
> Yes, hence the question whether to stay with bitfields uniformly
> or make ARM64 follow x86, but ARM32 keep using bitfields.

I would prefer to avoid differentiation between Arm32 and Arm64.

Cheers,

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  reply	other threads:[~2017-08-15 14:52 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-08 21:44 [PATCH v7 0/9] Memory scrubbing from idle loop Boris Ostrovsky
2017-08-08 21:44 ` [PATCH v7 1/9] mm: Clean up free_heap_pages() Boris Ostrovsky
2017-08-10 12:21   ` Wei Liu
2017-08-14 10:30   ` Jan Beulich
2017-08-08 21:45 ` [PATCH v7 2/9] mm: Place unscrubbed pages at the end of pagelist Boris Ostrovsky
2017-08-14 10:37   ` Jan Beulich
2017-08-14 14:29     ` Boris Ostrovsky
2017-08-15  8:18       ` Jan Beulich
2017-08-15 14:41         ` Boris Ostrovsky
2017-08-15 14:51           ` Jan Beulich
2017-08-15 14:52             ` Julien Grall [this message]
2017-08-15 15:03               ` Boris Ostrovsky
2017-08-15 15:08                 ` Jan Beulich
2017-08-14 11:16   ` Julien Grall
2017-08-08 21:45 ` [PATCH v7 3/9] mm: Extract allocation loop from alloc_heap_pages() Boris Ostrovsky
2017-08-08 21:45 ` [PATCH v7 4/9] mm: Scrub pages in alloc_heap_pages() if needed Boris Ostrovsky
2017-08-08 21:45 ` [PATCH v7 5/9] mm: Scrub memory from idle loop Boris Ostrovsky
2017-08-08 21:45 ` [PATCH v7 6/9] spinlock: Introduce spin_lock_cb() Boris Ostrovsky
2017-08-14 11:22   ` Julien Grall
2017-08-14 14:39     ` Boris Ostrovsky
2017-08-14 14:42       ` Julien Grall
2017-08-14 14:57         ` Boris Ostrovsky
2017-08-08 21:45 ` [PATCH v7 7/9] mm: Keep heap accessible to others while scrubbing Boris Ostrovsky
2017-08-14 10:38   ` Jan Beulich
2017-08-08 21:45 ` [PATCH v7 8/9] mm: Print number of unscrubbed pages in 'H' debug handler Boris Ostrovsky
2017-08-08 21:45 ` [PATCH v7 9/9] mm: Make sure pages are scrubbed Boris Ostrovsky

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=1874df12-a735-8b35-a3e3-df82ec986b9a@arm.com \
    --to=julien.grall@arm.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=JBeulich@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).