From: "H. Peter Anvin" <hpa@zytor.com>
To: Stefani Seibold <stefani@seibold.net>,
gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org,
x86@kernel.org, tglx@linutronix.de, mingo@redhat.com,
ak@linux.intel.com, aarcange@redhat.com, john.stultz@linaro.org,
luto@amacapital.net, xemul@parallels.com, gorcunov@openvz.org,
andriy.shevchenko@linux.intel.com
Cc: Martin.Runge@rohde-schwarz.com, Andreas.Brief@rohde-schwarz.com
Subject: Re: [PATCH 3/3] x86, vdso32: handle 32 bit vDSO larger one page
Date: Wed, 12 Mar 2014 15:58:17 -0700 [thread overview]
Message-ID: <5320E689.7060607@zytor.com> (raw)
In-Reply-To: <1394664680-17799-4-git-send-email-stefani@seibold.net>
On 03/12/2014 03:51 PM, Stefani Seibold wrote:
> This patch enables 32 bit vDSO which are larger than a page. Currently
> two pages are reserved, this should be enough for future improvements.
>
> Signed-off-by: Stefani Seibold <stefani@seibold.net>
> ---
> arch/x86/include/asm/fixmap.h | 4 +++-
> arch/x86/vdso/vdso32-setup.c | 29 +++++++++++++++++++----------
> 2 files changed, 22 insertions(+), 11 deletions(-)
>
> diff --git a/arch/x86/include/asm/fixmap.h b/arch/x86/include/asm/fixmap.h
> index 094d0cc..f513f14 100644
> --- a/arch/x86/include/asm/fixmap.h
> +++ b/arch/x86/include/asm/fixmap.h
> @@ -43,6 +43,8 @@ extern unsigned long __FIXADDR_TOP;
>
> #define FIXADDR_USER_START __fix_to_virt(FIX_VDSO)
> #define FIXADDR_USER_END __fix_to_virt(FIX_VDSO - 1)
> +
> +#define MAX_VDSO_PAGES 2
> #else
> #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
>
> @@ -74,7 +76,7 @@ extern unsigned long __FIXADDR_TOP;
> enum fixed_addresses {
> #ifdef CONFIG_X86_32
> FIX_HOLE,
> - FIX_VDSO,
> + FIX_VDSO = MAX_VDSO_PAGES,
> VVAR_PAGE,
> VSYSCALL_HPET,
Can we make this FIX_HOLE + MAX_VDSO_PAGES or at least a comment
explaning the constraint here... otherwise I fear random breakage.
> + for(i = 0; i != vdso32_size; ++i)
> + vdso32_pages[i] = virt_to_page(vdso_pages + VDSO_OFFSET(i));
Stylistic note:
for (i = 0; i < vdso32_size; i++)
Otherwise it really seems simple enough.
next prev parent reply other threads:[~2014-03-12 22:59 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-12 22:51 [PATCH 0/3] Improve 32 bit vDSO time Stefani Seibold
2014-03-12 22:51 ` [PATCH 1/3] x86, vdso32: undef CONFIG_OPTIMIZE_INLINING and CONFIG_X86_PPRO_FENCE Stefani Seibold
2014-03-12 22:51 ` [PATCH 2/3] x86, vdso32: remove vsyscall_32.c Stefani Seibold
2014-03-12 22:51 ` [PATCH 3/3] x86, vdso32: handle 32 bit vDSO larger one page Stefani Seibold
2014-03-12 22:58 ` H. Peter Anvin [this message]
2014-03-12 22:59 ` Andy Lutomirski
2014-03-13 15:53 ` H. Peter Anvin
2014-03-13 17:28 ` Andy Lutomirski
2014-03-13 18:08 ` H. Peter Anvin
2014-03-13 18:21 ` H. Peter Anvin
2014-03-13 18:32 ` Andy Lutomirski
2014-03-13 19:01 ` H. Peter Anvin
[not found] ` <CA+55aFyOp6V_tE-sXKVi+=6yVwHQb0sLWSNbk=N7KbhBrx9QhA@mail.gmail.com>
[not found] ` <CA+55aFyCSL==4Ff4JT3uFKN_28mz92ef1L67-4OUGqHZ8HXUhg@mail.gmail.com>
2014-03-13 19:13 ` Andy Lutomirski
[not found] ` <CA+55aFwDn3zA0gEn2r3nJVPWuv-pLYyrj4=8_gt1xFTd2g_Dwg@mail.gmail.com>
2014-03-13 19:33 ` H. Peter Anvin
[not found] ` <CA+55aFxWsm=P5h1o=BNrwkcy2ZadFsVxpegxJ0rskPVcmo_Ljw@mail.gmail.com>
2014-03-13 19:58 ` H. Peter Anvin
2014-03-13 21:00 ` Andi Kleen
2014-03-13 21:04 ` H. Peter Anvin
2014-03-13 21:10 ` Andi Kleen
2014-03-13 21:48 ` Linus Torvalds
2014-03-18 14:22 ` OT: " Hans-Peter Jansen
2014-03-13 19:35 ` Andy Lutomirski
2014-03-12 22:56 ` [PATCH 0/3] Improve 32 bit vDSO time Andy Lutomirski
2014-03-12 23:11 ` stefani
2014-03-13 3:48 ` H. Peter Anvin
2014-03-13 8:11 ` Stefani Seibold
2014-03-13 22:08 ` H. Peter Anvin
2014-03-14 6:24 ` Stefani Seibold
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=5320E689.7060607@zytor.com \
--to=hpa@zytor.com \
--cc=Andreas.Brief@rohde-schwarz.com \
--cc=Martin.Runge@rohde-schwarz.com \
--cc=aarcange@redhat.com \
--cc=ak@linux.intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=gorcunov@openvz.org \
--cc=gregkh@linuxfoundation.org \
--cc=john.stultz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=mingo@redhat.com \
--cc=stefani@seibold.net \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=xemul@parallels.com \
/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
Powered by JetHome