From: Ingo Molnar <mingo@kernel.org>
To: Andy Lutomirski <luto@amacapital.net>
Cc: "H. Peter Anvin" <hpa@zytor.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Denys Vlasenko <dvlasenk@redhat.com>,
Brian Gerst <brgerst@gmail.com>,
Peter Zijlstra <peterz@infradead.org>,
Borislav Petkov <bp@alien8.de>,
Linus Torvalds <torvalds@linux-foundation.org>,
Oleg Nesterov <oleg@redhat.com>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [RFC PATCH 0/7] x86/entry: Create a home for the x86 entry code in arch/x86/entry/
Date: Wed, 3 Jun 2015 19:29:10 +0200 [thread overview]
Message-ID: <20150603172910.GA16982@gmail.com> (raw)
In-Reply-To: <CALCETrUb1Yka7MD8Jkveg8egVPQaEnaOgKm6j=DUAs6e9Go=sw@mail.gmail.com>
* Andy Lutomirski <luto@amacapital.net> wrote:
> On Wed, Jun 3, 2015 at 10:21 AM, Ingo Molnar <mingo@kernel.org> wrote:
> >
> > * Ingo Molnar <mingo@kernel.org> wrote:
> >
> >>
> >> * Andy Lutomirski <luto@amacapital.net> wrote:
> >>
> >> > On Wed, Jun 3, 2015 at 10:11 AM, Ingo Molnar <mingo@kernel.org> wrote:
> >> > >
> >> > > * H. Peter Anvin <hpa@zytor.com> wrote:
> >> > >
> >> > >> I like the patch set (and you can add my Acked-by:) *except* 7/7, and the reason
> >> > >> for that is that it really isn't entry code, it is user space code.
> >> > >
> >> > > Well, I think arch/x86/entry/ should be a broader category for all things entry
> >> > > code: and the vsyscall code is closely related to the syscall entry/exit code so
> >> > > it's in a better place there than just being in the generic arch/x86/kernel/
> >> > > directory.
> >> > >
> >> > > I kept it separate in arch/x86/entry/vsyscall/ so it doesn't mix with other entry
> >> > > code.
> >> >
> >> > ...and my reading comprehension is way off this morning. You already called it
> >> > arch/x86/entry, so there was no reason for me to suggest that :)
> >> >
> >> > Anyway, arch/x86/entry/vdso isn't so bad. It's just a bit odd sounding to me.
> >>
> >> We could make it arch/x86/sys/? Sounds a bit too generic though.
> >>
> >> Didn't want to limit it to system calls only, because there's various other
> >> entry methods (irqs, traps, NMI, etc.) that we want to handle in a coherent
> >> fashion. [ Which you are intimately aware of ;-) ]
> >
> > Another tweak would be to move the kernel side entry code into
> > arch/x86/entry/system/ or so, to create the following organization:
> >
> > arch/x86/entry: all things entry methods
> >
> > arch/x86/entry/system/: system/kernel mode entry code
> > arch/x86/entry/vdso/: user mode entry code
> > arch/x86/entry/vsyscall/: [legacy vsyscall entry code]
> >
> > arch/x86/entry/syscalls/: build-time syscall table generation code
> >
> > My primary goal is to have them all close to each other, so that we can have
> > better structure, more coherency and easier overview. The names are negotiable,
> > the concept is not ;-)
>
> I think I like the approach in the patches you sent better.
Ok.
> Once this is in, I'll rebase my code movement change and send it,
Sounds good to me!
> although I probably won't call the result arch/x86/entry/entry.c :)
A few naming suggestions:
arch/x86/entry/core.c
arch/x86/entry/sys.c
arch/x86/entry/kernel.c
;-)
Note ... I'd love to split up the various entry methods into separate files - but
will do that only on top of your C based bits.
And once that is done, the names of those files will be obvious and clean:
arch/x86/entry/syscall.c
arch/x86/entry/irq.c
arch/x86/entry/traps.c
arch/x86/entry/nmi.c
arch/x86/entry/et.c
> And then it'll be back to grumbling at context tracking.
Uh oh ...
Thanks,
Ingo
next prev parent reply other threads:[~2015-06-03 17:29 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-03 16:59 [RFC PATCH 0/7] x86/entry: Create a home for the x86 entry code in arch/x86/entry/ Ingo Molnar
2015-06-03 16:59 ` [PATCH 1/7] x86/asm/entry: Move entry_64.S and entry_32.S to arch/x86/entry/ Ingo Molnar
2015-06-03 16:59 ` [PATCH 2/7] x86/asm/entry: Move the compat syscall entry code " Ingo Molnar
2015-06-03 17:04 ` Andy Lutomirski
2015-06-03 17:11 ` Ingo Molnar
2015-06-03 16:59 ` [PATCH 3/7] x86/asm/entry, x86/vdso: Move the vDSO code to arch/x86/entry/vdso/ Ingo Molnar
2015-06-03 17:05 ` Andy Lutomirski
2015-06-03 16:59 ` [PATCH 4/7] x86/asm/entry: Move the 'thunk' functions to arch/x86/entry/ Ingo Molnar
2015-06-03 16:59 ` [PATCH 5/7] x86/asm/entry: Move arch/x86/include/asm/calling.h " Ingo Molnar
2015-06-03 16:59 ` [PATCH 6/7] x86/asm/entry: Move the arch/x86/syscalls/ definitions to arch/x86/entry/syscalls/ Ingo Molnar
2015-06-03 16:59 ` [PATCH 7/7] x86/asm/entry: Move the vsyscall code to arch/x86/entry/vsyscall/ Ingo Molnar
2015-06-03 17:03 ` [RFC PATCH 0/7] x86/entry: Create a home for the x86 entry code in arch/x86/entry/ H. Peter Anvin
2015-06-03 17:11 ` Ingo Molnar
2015-06-03 17:13 ` Andy Lutomirski
2015-06-03 17:16 ` Ingo Molnar
2015-06-03 17:21 ` Ingo Molnar
2015-06-03 17:23 ` Andy Lutomirski
2015-06-03 17:29 ` Ingo Molnar [this message]
2015-06-03 17:22 ` Andy Lutomirski
2015-06-03 18:04 ` H. Peter Anvin
2015-06-03 18:18 ` H. Peter Anvin
2015-06-03 17:07 ` Andy Lutomirski
2015-06-03 17:08 ` Andy Lutomirski
2015-06-03 17:13 ` Ingo Molnar
2015-06-03 18:02 ` H. Peter Anvin
2015-06-05 7:37 ` Ingo Molnar
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=20150603172910.GA16982@gmail.com \
--to=mingo@kernel.org \
--cc=bp@alien8.de \
--cc=brgerst@gmail.com \
--cc=dvlasenk@redhat.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=oleg@redhat.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.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