LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 0/4]: Respun LMB patches.
@ 2008-02-14 1:09 David Miller
2008-02-14 20:58 ` Becky Bruce
2008-02-15 19:05 ` Michael Ellerman
0 siblings, 2 replies; 10+ messages in thread
From: David Miller @ 2008-02-14 1:09 UTC (permalink / raw)
To: linuxppc-dev; +Cc: sparclinux, linux-kernel
I've taken into consideration the various feedback, and
ported the bug fix and other LMB patches posted recently
in an effort to keep the patch churn by others down wrt.
my moving of these files.
1) Use HAVE_LMB as suggested by Sam.
2) Fix potential build errors wrt. asm/prom.h dependencies.
My algorithm was:
a) If the file only included asm/lmb.h I added an include
of both linux/lmb.c and asm/prom.h
b) If the file already includes asm/prom.h, I merely
changed the asm/lmb.h to linux/lmb.h
Header include mimimizations can be done as followon patches.
3) Integrate Kumar Gala's initial region fix.
4) Integrate Becky Bruce's large physical addressing change,
but using u64 instead of phys_addr_t.
It's all at:
master.kernel.org:/pub/scm/linux/kernel/git/davem/lmb-2.6.git
like before.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 1:09 [PATCH 0/4]: Respun LMB patches David Miller
@ 2008-02-14 20:58 ` Becky Bruce
2008-02-14 21:24 ` Josh Boyer
` (2 more replies)
2008-02-15 19:05 ` Michael Ellerman
1 sibling, 3 replies; 10+ messages in thread
From: Becky Bruce @ 2008-02-14 20:58 UTC (permalink / raw)
To: David Miller; +Cc: linuxppc-dev, sparclinux, linux-kernel
On Feb 13, 2008, at 7:09 PM, David Miller wrote:
>
> I've taken into consideration the various feedback, and
> ported the bug fix and other LMB patches posted recently
> in an effort to keep the patch churn by others down wrt.
> my moving of these files.
>
> 1) Use HAVE_LMB as suggested by Sam.
>
> 2) Fix potential build errors wrt. asm/prom.h dependencies.
>
> My algorithm was:
>
> a) If the file only included asm/lmb.h I added an include
> of both linux/lmb.c and asm/prom.h
>
> b) If the file already includes asm/prom.h, I merely
> changed the asm/lmb.h to linux/lmb.h
>
> Header include mimimizations can be done as followon patches.
>
> 3) Integrate Kumar Gala's initial region fix.
>
> 4) Integrate Becky Bruce's large physical addressing change,
> but using u64 instead of phys_addr_t.
>
> It's all at:
>
> master.kernel.org:/pub/scm/linux/kernel/git/davem/lmb-2.6.git
>
> like before.
Thanks for picking up the patches from Kumar and myself and fitting
them into your series - this is much appreciated. FYI, I applied the
entire patch series to my local tree and test-booted both mpc8641 and
mpc8568mds and both build and boot cleanly. I also built pasemi and
ebony, those build cleanly as well.
Cheers,
Becky
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 20:58 ` Becky Bruce
@ 2008-02-14 21:24 ` Josh Boyer
2008-02-14 22:15 ` David Miller
2008-02-14 22:13 ` David Miller
2008-02-14 23:21 ` Olof Johansson
2 siblings, 1 reply; 10+ messages in thread
From: Josh Boyer @ 2008-02-14 21:24 UTC (permalink / raw)
To: Becky Bruce; +Cc: David Miller, sparclinux, linuxppc-dev, linux-kernel
On Thu, 14 Feb 2008 14:58:22 -0600
Becky Bruce <becky.bruce@freescale.com> wrote:
>
> On Feb 13, 2008, at 7:09 PM, David Miller wrote:
>
> >
> > I've taken into consideration the various feedback, and
> > ported the bug fix and other LMB patches posted recently
> > in an effort to keep the patch churn by others down wrt.
> > my moving of these files.
> >
> > 1) Use HAVE_LMB as suggested by Sam.
> >
> > 2) Fix potential build errors wrt. asm/prom.h dependencies.
> >
> > My algorithm was:
> >
> > a) If the file only included asm/lmb.h I added an include
> > of both linux/lmb.c and asm/prom.h
> >
> > b) If the file already includes asm/prom.h, I merely
> > changed the asm/lmb.h to linux/lmb.h
> >
> > Header include mimimizations can be done as followon patches.
> >
> > 3) Integrate Kumar Gala's initial region fix.
> >
> > 4) Integrate Becky Bruce's large physical addressing change,
> > but using u64 instead of phys_addr_t.
> >
> > It's all at:
> >
> > master.kernel.org:/pub/scm/linux/kernel/git/davem/lmb-2.6.git
> >
> > like before.
>
>
> Thanks for picking up the patches from Kumar and myself and fitting
> them into your series - this is much appreciated. FYI, I applied the
> entire patch series to my local tree and test-booted both mpc8641 and
> mpc8568mds and both build and boot cleanly. I also built pasemi and
> ebony, those build cleanly as well.
I plan on actually testing this on Ebony, Walnut, and Bamboo either
later tonight or tomorrow. I don't expect many issues.
Dave, those above boards would cover the build of PowerPC 4xx CPU cores.
Just an FYI.
josh
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 20:58 ` Becky Bruce
2008-02-14 21:24 ` Josh Boyer
@ 2008-02-14 22:13 ` David Miller
2008-02-14 23:21 ` Olof Johansson
2 siblings, 0 replies; 10+ messages in thread
From: David Miller @ 2008-02-14 22:13 UTC (permalink / raw)
To: becky.bruce; +Cc: linuxppc-dev, sparclinux, linux-kernel
From: Becky Bruce <becky.bruce@freescale.com>
Date: Thu, 14 Feb 2008 14:58:22 -0600
> Thanks for picking up the patches from Kumar and myself and fitting
> them into your series - this is much appreciated. FYI, I applied the
> entire patch series to my local tree and test-booted both mpc8641 and
> mpc8568mds and both build and boot cleanly. I also built pasemi and
> ebony, those build cleanly as well.
Thanks for all of the testing.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 21:24 ` Josh Boyer
@ 2008-02-14 22:15 ` David Miller
2008-02-15 22:12 ` Josh Boyer
0 siblings, 1 reply; 10+ messages in thread
From: David Miller @ 2008-02-14 22:15 UTC (permalink / raw)
To: jwboyer; +Cc: becky.bruce, sparclinux, linuxppc-dev, linux-kernel
From: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Date: Thu, 14 Feb 2008 15:24:48 -0600
> I plan on actually testing this on Ebony, Walnut, and Bamboo either
> later tonight or tomorrow. I don't expect many issues.
>
> Dave, those above boards would cover the build of PowerPC 4xx CPU cores.
Ok.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 20:58 ` Becky Bruce
2008-02-14 21:24 ` Josh Boyer
2008-02-14 22:13 ` David Miller
@ 2008-02-14 23:21 ` Olof Johansson
2008-02-15 0:58 ` Stephen Rothwell
2 siblings, 1 reply; 10+ messages in thread
From: Olof Johansson @ 2008-02-14 23:21 UTC (permalink / raw)
To: Becky Bruce; +Cc: David Miller, sparclinux, linuxppc-dev, linux-kernel
On Thu, Feb 14, 2008 at 02:58:22PM -0600, Becky Bruce wrote:
> Thanks for picking up the patches from Kumar and myself and fitting
> them into your series - this is much appreciated. FYI, I applied the
> entire patch series to my local tree and test-booted both mpc8641 and
> mpc8568mds and both build and boot cleanly. I also built pasemi and
> ebony, those build cleanly as well.
pasemi_defconfig boots happily on my boards here. I've kicked off my
"build all powerpc defconfigs" script while I leave the house for a
couple of hours, but as others have said, no problems are expected...
-Olof
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 23:21 ` Olof Johansson
@ 2008-02-15 0:58 ` Stephen Rothwell
0 siblings, 0 replies; 10+ messages in thread
From: Stephen Rothwell @ 2008-02-15 0:58 UTC (permalink / raw)
To: David Miller
Cc: Olof Johansson, Becky Bruce, sparclinux, linuxppc-dev, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 899 bytes --]
On Thu, 14 Feb 2008 17:21:52 -0600 Olof Johansson <olof@lixom.net> wrote:
>
> On Thu, Feb 14, 2008 at 02:58:22PM -0600, Becky Bruce wrote:
>
> > Thanks for picking up the patches from Kumar and myself and fitting
> > them into your series - this is much appreciated. FYI, I applied the
> > entire patch series to my local tree and test-booted both mpc8641 and
> > mpc8568mds and both build and boot cleanly. I also built pasemi and
> > ebony, those build cleanly as well.
>
> pasemi_defconfig boots happily on my boards here. I've kicked off my
> "build all powerpc defconfigs" script while I leave the house for a
> couple of hours, but as others have said, no problems are expected...
It builds and boots on legacy iSeries (and seems to be working ok) as well.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 1:09 [PATCH 0/4]: Respun LMB patches David Miller
2008-02-14 20:58 ` Becky Bruce
@ 2008-02-15 19:05 ` Michael Ellerman
2008-02-15 23:45 ` David Miller
1 sibling, 1 reply; 10+ messages in thread
From: Michael Ellerman @ 2008-02-15 19:05 UTC (permalink / raw)
To: David Miller; +Cc: linuxppc-dev, sparclinux, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 937 bytes --]
On Wed, 2008-02-13 at 17:09 -0800, David Miller wrote:
> I've taken into consideration the various feedback, and
> ported the bug fix and other LMB patches posted recently
> in an effort to keep the patch churn by others down wrt.
> my moving of these files.
>
> 1) Use HAVE_LMB as suggested by Sam.
>
> 2) Fix potential build errors wrt. asm/prom.h dependencies.
>
> My algorithm was:
>
> a) If the file only included asm/lmb.h I added an include
> of both linux/lmb.c and asm/prom.h
>
> b) If the file already includes asm/prom.h, I merely
> changed the asm/lmb.h to linux/lmb.h
That fixes the build failures I was seeing, ack.
cheers
--
Michael Ellerman
OzLabs, IBM Australia Development Lab
wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)
We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-14 22:15 ` David Miller
@ 2008-02-15 22:12 ` Josh Boyer
0 siblings, 0 replies; 10+ messages in thread
From: Josh Boyer @ 2008-02-15 22:12 UTC (permalink / raw)
To: David Miller; +Cc: becky.bruce, sparclinux, linuxppc-dev, linux-kernel
On Thu, 14 Feb 2008 14:15:31 -0800 (PST)
David Miller <davem@davemloft.net> wrote:
> From: Josh Boyer <jwboyer@linux.vnet.ibm.com>
> Date: Thu, 14 Feb 2008 15:24:48 -0600
>
> > I plan on actually testing this on Ebony, Walnut, and Bamboo either
> > later tonight or tomorrow. I don't expect many issues.
> >
> > Dave, those above boards would cover the build of PowerPC 4xx CPU cores.
>
> Ok.
Ok, booted just fine on Ebony (PowerPC 440), Bamboo(PowerPC 440 + FPU),
and Haleakala (PowerPC 405).
josh
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/4]: Respun LMB patches.
2008-02-15 19:05 ` Michael Ellerman
@ 2008-02-15 23:45 ` David Miller
0 siblings, 0 replies; 10+ messages in thread
From: David Miller @ 2008-02-15 23:45 UTC (permalink / raw)
To: michael; +Cc: linuxppc-dev, sparclinux, linux-kernel
From: Michael Ellerman <michael@ellerman.id.au>
Date: Sat, 16 Feb 2008 06:05:37 +1100
> That fixes the build failures I was seeing, ack.
Thanks for testing.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-02-15 23:45 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-14 1:09 [PATCH 0/4]: Respun LMB patches David Miller
2008-02-14 20:58 ` Becky Bruce
2008-02-14 21:24 ` Josh Boyer
2008-02-14 22:15 ` David Miller
2008-02-15 22:12 ` Josh Boyer
2008-02-14 22:13 ` David Miller
2008-02-14 23:21 ` Olof Johansson
2008-02-15 0:58 ` Stephen Rothwell
2008-02-15 19:05 ` Michael Ellerman
2008-02-15 23:45 ` David Miller
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).