From: Jerone Young <jyoung5@us.ibm.com>
To: Hollis Blanchard <hollisb@us.ibm.com>
Cc: kvm-devel@lists.sourceforge.net,
kvm-ppc-devel@lists.sourceforge.net,
kvm-ia64-devel@lists.sourceforge.net
Subject: Re: [kvm-ppc-devel] [PATCH] [kvm-userspace] Make "make sync" in
Date: Tue, 15 Apr 2008 16:20:58 +0000 [thread overview]
Message-ID: <1208276458.6500.14.camel@thinkpadL> (raw)
In-Reply-To: <200804150908.32946.hollisb@us.ibm.com>
On Tue, 2008-04-15 at 09:08 -0500, Hollis Blanchard wrote:
> On Monday 14 April 2008 21:46:43 Jerone Young wrote:
> > 1 file changed, 13 insertions(+), 5 deletions(-)
> > kernel/Makefile | 18 +++++++++++++-----
> >
> >
> > This patch add the ability for make sync in the kernel directory to work
> > for mulitiple architectures and not just x86.
> >
> > Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
> >
> > diff --git a/kernel/Makefile b/kernel/Makefile
> > --- a/kernel/Makefile
> > +++ b/kernel/Makefile
> > @@ -1,5 +1,10 @@ include ../config.mak
> > include ../config.mak
> >
> > +ASM_DIR=$(ARCH)
> > +ifneq '$(filter $(ASM_DIR), x86_64 i386 ia64)' ''
> > + ASM_DIR=x86
> > +endif
>
> Minor complaint: "ASM_DIR" really isn't. You use it as arch/$(ASM_DIR) and
> also as include/asm-$(ASM_DIR). I think what you really meant is "ARCH_DIR"
> (or similar).
I can change it. Not that big of a deal. Oh left the ia64 on there by
accident.
>
> > +ifneq '$(filter $(ASM_DIR), x86_64 i386 ia64)' ''
> > $(call unifdef, include/linux/kvm.h)
> > $(call unifdef, include/linux/kvm_para.h)
> > $(call unifdef, include/asm-x86/kvm.h)
> > @@ -54,6 +60,8 @@ sync:
> > $(call hack, svm.c)
> > $(call hack, x86.c)
> > $(call hack, irq.h)
> > +endif
> > +
>
> Why are you keeping IA64 touching asm-x86?
Accident. Cut and past error from the first mistake.
>
> What happened to my suggestion of creating a per-arch HACK_FILES and
> UNIFDEF_FILES variables, and looping over those?
These macros are only for x86. We don't want them or need them. So I
just left them be as not to accidentally miss or break anything.
>
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
kvm-ppc-devel mailing list
kvm-ppc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-ppc-devel
WARNING: multiple messages have this Message-ID (diff)
From: Jerone Young <jyoung5@us.ibm.com>
To: Hollis Blanchard <hollisb@us.ibm.com>
Cc: kvm-devel@lists.sourceforge.net,
kvm-ppc-devel@lists.sourceforge.net,
kvm-ia64-devel@lists.sourceforge.net
Subject: Re: [PATCH] [kvm-userspace] Make "make sync" in kernel dir work for multiple archs
Date: Tue, 15 Apr 2008 11:20:58 -0500 [thread overview]
Message-ID: <1208276458.6500.14.camel@thinkpadL> (raw)
In-Reply-To: <200804150908.32946.hollisb@us.ibm.com>
On Tue, 2008-04-15 at 09:08 -0500, Hollis Blanchard wrote:
> On Monday 14 April 2008 21:46:43 Jerone Young wrote:
> > 1 file changed, 13 insertions(+), 5 deletions(-)
> > kernel/Makefile | 18 +++++++++++++-----
> >
> >
> > This patch add the ability for make sync in the kernel directory to work
> > for mulitiple architectures and not just x86.
> >
> > Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
> >
> > diff --git a/kernel/Makefile b/kernel/Makefile
> > --- a/kernel/Makefile
> > +++ b/kernel/Makefile
> > @@ -1,5 +1,10 @@ include ../config.mak
> > include ../config.mak
> >
> > +ASM_DIR=$(ARCH)
> > +ifneq '$(filter $(ASM_DIR), x86_64 i386 ia64)' ''
> > + ASM_DIR=x86
> > +endif
>
> Minor complaint: "ASM_DIR" really isn't. You use it as arch/$(ASM_DIR) and
> also as include/asm-$(ASM_DIR). I think what you really meant is "ARCH_DIR"
> (or similar).
I can change it. Not that big of a deal. Oh left the ia64 on there by
accident.
>
> > +ifneq '$(filter $(ASM_DIR), x86_64 i386 ia64)' ''
> > $(call unifdef, include/linux/kvm.h)
> > $(call unifdef, include/linux/kvm_para.h)
> > $(call unifdef, include/asm-x86/kvm.h)
> > @@ -54,6 +60,8 @@ sync:
> > $(call hack, svm.c)
> > $(call hack, x86.c)
> > $(call hack, irq.h)
> > +endif
> > +
>
> Why are you keeping IA64 touching asm-x86?
Accident. Cut and past error from the first mistake.
>
> What happened to my suggestion of creating a per-arch HACK_FILES and
> UNIFDEF_FILES variables, and looping over those?
These macros are only for x86. We don't want them or need them. So I
just left them be as not to accidentally miss or break anything.
>
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
next prev parent reply other threads:[~2008-04-15 16:20 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-15 2:46 [PATCH] [kvm-userspace] Make "make sync" in kernel dir work for multiple archs Jerone Young
2008-04-15 3:36 ` [kvm-ppc-devel] [kvm-devel] [PATCH] [kvm-userspace] Make "make Anthony Liguori
2008-04-15 3:36 ` [PATCH] [kvm-userspace] Make "make sync" in kernel dir work for multiple archs Anthony Liguori
2008-04-15 14:08 ` [kvm-ppc-devel] [PATCH] [kvm-userspace] Make "make sync" in Hollis Blanchard
2008-04-15 14:08 ` [PATCH] [kvm-userspace] Make "make sync" in kernel dir work for multiple archs Hollis Blanchard
2008-04-15 16:20 ` Jerone Young [this message]
2008-04-15 16:20 ` Jerone Young
2008-04-15 18:21 ` [kvm-ppc-devel] [PATCH] [kvm-userspace] Make "make sync" in Hollis Blanchard
2008-04-15 18:21 ` [PATCH] [kvm-userspace] Make "make sync" in kernel dir work for multiple archs Hollis Blanchard
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=1208276458.6500.14.camel@thinkpadL \
--to=jyoung5@us.ibm.com \
--cc=hollisb@us.ibm.com \
--cc=kvm-devel@lists.sourceforge.net \
--cc=kvm-ia64-devel@lists.sourceforge.net \
--cc=kvm-ppc-devel@lists.sourceforge.net \
/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.