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

Re: [Xen-devel] [PATCH v2 1/2] xen/link: Introduce .bss.percpu.page_aligned


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Jan Beulich <JBeulich@xxxxxxxx>
  • Date: Mon, 29 Jul 2019 13:17:29 +0000
  • Accept-language: en-US
  • 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-SenderADCheck; bh=Tt5XUBdvJz1n6bhglTvkGfXvGb4wW3QuvCq6w7zNB3o=; b=ZhBRnyjRPqoqKxpPejudgLBleLBDGyORPjO9GWxXOqUOBO/GJIpKCQ3xDrpFX0+JuPtsn+w4uqbV1oGJSrHbK03/XgRLxI0rY3BpFE/hGkEYUay3POLQ9WuUkoX9tZeW/5Z/o+kaoJzcmLG87WWmdI2lP1lqDIo3QB1bIKEFN585/3XFMvo1lL+ICpeCJr8oyn9a/HSFl3KE/J+PRaXdl2Oy9Q8sFVsJJQw1SOhg13Nu1EsYKJjOzzDVQi3yNB3DefQbEh+KyBlQoPLMAWHkIdGRBfauWWWVMsU7uG9bE3Gkr08NU1eOdEMTtdRKb5BRzLT2XyrXh4sLCmUjbnoqJQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=hQfdRIcVA2WA3fVykNwjwXN4pmNSR7E1PkFoFF611pvG6yKThL3QD6JgvLQJdUqXfyyh6YpJxtrvXXU1O+DS9QwiR6/nznvpz5kX1q7rJWuTQs0i9QF92GX1YdYorhWeE6gL9G2zDPX1RJgJWmlBdw40jhX6s5sBnQ/9dHwGblhN/jM2lM9UqPje1huZRRnqRnuZsPJdt9idgUgmlEGVIayNqj1EWJZWkSoKjjfBFiD352pwTe1XzshcmCBSpLxpAaHUrBuWO9CFzbVI3FvTom4Ds7RwJ2qc0TQipgBW+JgI3rK+4hLuHSkQYcq0svtAnOR/eGMSaphuHPT2mpZrvA==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=JBeulich@xxxxxxxx;
  • Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, Julien Grall <julien.grall@xxxxxxx>, Xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>
  • Delivery-date: Mon, 29 Jul 2019 13:34:25 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHVQ/FyveAxY3hrR029jOQeDtxaXKbhmAYA
  • Thread-topic: [Xen-devel] [PATCH v2 1/2] xen/link: Introduce .bss.percpu.page_aligned

On 26.07.2019 22:32, Andrew Cooper wrote:
> Future changes are going to need to page align some percpu data.
> 
> This means that the percpu area needs suitably aligning in the BSS so CPU0 has
> correctly aligned data.  Shuffle the exact link order of items within the BSS
> to give .bss.percpu.page_aligned appropriate alignment.
> 
> In addition, we need to be able to specify an alignment attribute to
> __DEFINE_PER_CPU().  Rework it so the caller passes in all attributes, and
> adjust DEFINE_PER_CPU{,_READ_MOSTLY}() to match.  This has the added bonus
> that it is now possible to grep for .bss.percpu and find all the users.

And it has the meaningful downside of now every use site needing to get
things right. This is not really a problem solely because
__DEFINE_PER_CPU() is a helper for all the real DEFINE_PER_CPU*(). The
grep-ing argument is not a really meaningful one imo anyway - you could
as well grep for DEFINE_PER_CPU.

Anyway - this is not an objection to the chosen approach, just a remark.
I'd like to note though that you explicitly undo something I had done
(iirc), and I may find odd when running into again down the road,
potentially resulting in an "undo-the-undo" patch. I think we really
need to find a way to avoid re-doing things that were done intentionally
in certain ways, when the difference between variants is merely personal
taste.

> --- a/xen/arch/x86/xen.lds.S
> +++ b/xen/arch/x86/xen.lds.S
> @@ -293,14 +293,15 @@ SECTIONS
>          __bss_start = .;
>          *(.bss.stack_aligned)
>          *(.bss.page_aligned*)
> -       *(.bss)
> -       . = ALIGN(SMP_CACHE_BYTES);
>          __per_cpu_start = .;
> +       *(.bss.percpu.page_aligned)

Now this is a case where I think an explicit ALIGN(PAGE_SIZE) would be
desirable: If the last item in .bss.page_aligned was not a multiple of
PAGE_SIZE in size, then __per_cpu_start would live needlessly early,
possibly increasing our memory overhead by a page per CPU for no gain
at all.

>          *(.bss.percpu)
>          . = ALIGN(SMP_CACHE_BYTES);
>          *(.bss.percpu.read_mostly)
>          . = ALIGN(SMP_CACHE_BYTES);
>          __per_cpu_data_end = .;
> +       *(.bss)
> +       . = ALIGN(SMP_CACHE_BYTES);
>          __bss_end = .;

Why is this last ALIGN() needed?

Jan
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel

 


Rackspace

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