Re: [PATCH 1/1] [PPC] 8xx swap bug-fix

2008-02-04 Thread Benjamin Herrenschmidt
On Sat, 2008-02-02 at 10:47 +0300, Yuri Tikhonov wrote: > Hello, > > Here is the patch which makes Linux-2.6 swap routines operate correctly on > the ppc-8xx-based machines. Best is to just remove writeback completely and let the generic code handle it. Ben. > Signed-off-by: Yuri Tikhonov <[E

Re: [PATCH 1/1] [PPC] 8xx swap bug-fix

2008-02-04 Thread Yuri Tikhonov
Hi Scott, You are right. The TLB handlers for 8xx in arch/powerpc branch set the PAGE_ACCESSED flag unconditionally too. And the include/asm-powerpc/pgtable-ppc32.h file still includes the comment that this is the bug. So, probably the corresponding patch for powerpc branch will be usefull.

Re: [PATCH 5/6] Add OF-tree support to RapidIO controller driver.

2008-02-04 Thread Stephen Rothwell
On Wed, 30 Jan 2008 18:30:52 +0800 Zhang Wei <[EMAIL PROTECTED]> wrote: > > -void fsl_rio_setup(int law_start, int law_size) > +int fsl_rio_setup(struct of_device *dev) > { > + if (!dev->node) { > + dev_err(&dev->dev, "Device OF-Node is NULL"); > + return -EFAULT; Pro

[PATCH] [POWERPC] Use a sensible default for clock_getres() in the vdso.

2008-02-04 Thread Tony Breeds
On Sun, Jan 27, 2008 at 07:32:59PM +0530, Sripathi Kodi wrote: > Hi Paul, > > On PPC, I see a disparity between clock_getres implementations in the > vdso and syscall. I am using a IBM Openpower hardware and 2.6.24 kernel > with CONFIG_HIGH_RES_TIMERS=y. > > clock_getres call for CLOCK_REALTIME

Re: [PATCH] [POWERPC] of: add alias helper functions.

2008-02-04 Thread Stephen Rothwell
Hi Grant, On Mon, 04 Feb 2008 09:16:08 -0700 Grant Likely <[EMAIL PROTECTED]> wrote: > > From: Grant Likely <[EMAIL PROTECTED]> > > Add helper functions for translating back and forth between alias > properties and device tree nodes. Do you have a use for this yet (I assume you do - it would be

[PATCH] [POWERPC] iSeries: fix section mismatch in iseries_veth

2008-02-04 Thread Stephen Rothwell
WARNING: vmlinux.o(.text+0x25dca0): Section mismatch in reference from the function .veth_probe() to the function .init.text:.veth_probe_one() Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- drivers/net/iseries_veth.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Jeff, can

[PATCH] [POWERPC] iSeries: fix section mismatch in viocd

2008-02-04 Thread Stephen Rothwell
WARNING: drivers/cdrom/viocd.o(.text+0x504): Section mismatch in reference from the function .viocd_probe() to the function .init.text:.find_capability() Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- drivers/cdrom/viocd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Jen

[PATCH] [POWERPC] iSeries: fix section mismatch in viodsasd

2008-02-04 Thread Stephen Rothwell
WARNING: vmlinux.o(.text+0x3017c): Section mismatch in reference from the function .vio_create_viodasd() to the function .devinit.text:.vio_register_device_node() Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]> --- arch/powerpc/kernel/vio.c |2 +- include/asm-powerpc/vio.h |2 +- 2

Re: [PATCH 2/10] sbc8560: Add v1 device tree source for Wind River SBC8560 board

2008-02-04 Thread David Gibson
On Fri, Feb 01, 2008 at 08:46:32AM -0600, Kumar Gala wrote: > > On Feb 1, 2008, at 1:54 AM, David Gibson wrote: > > > On Thu, Jan 24, 2008 at 06:41:24PM -0500, Paul Gortmaker wrote: [snip] > >> + [EMAIL PROTECTED],0 { > > > > I'm not entirely convinced on this two-level representation.

[PATCH] [POWERPC] avoid possible extra of_node_put in axon_msi.c

2008-02-04 Thread Stephen Rothwell
I got this warning from gcc: arch/powerpc/platforms/cell/axon_msi.c:118: warning: 'tmp' may be used uninitialized in this function Which turns out to be a false positive, but pointed out that it was possible for the error path in find_msi_translator() to do an extra of_node_put on a node. This f

[PATCH] ppc: fix #ifdef-s in mediabay driver (take 2)

2008-02-04 Thread Bartlomiej Zolnierkiewicz
* Replace incorrect CONFIG_BLK_DEV_IDE #ifdef in check_media_bay() by CONFIG_MAC_FLOPPY one. * Replace incorrect CONFIG_BLK_DEV_IDE #ifdef-s by CONFIG_BLK_DEV_IDE_PMAC ones. * check_media_bay() is used only by drivers/block/swim3.c so make this function available only if CONFIG_MAC_FLOPPY

[PATCH v2] Add oprofile support for e300

2008-02-04 Thread Andy Fleming
The e300 c3 and c4 variants support hardware performance monitor counters which are identical to those found in the e500. Signed-off-by: Andy Fleming <[EMAIL PROTECTED]> --- arch/powerpc/kernel/cputable.c |6 ++ arch/powerpc/platforms/Kconfig |1 + 2 files changed, 7 insertions(+), 0

[PATCH v2] Made FSL Book-E PMC support more generic

2008-02-04 Thread Andy Fleming
Some of the more recent e300 cores have the same performance monitor implementation as the e500. e300 isn't book-e, so the name isn't really appropriate. In preparation for e300 support, rename a bunch of fsl_booke things to say fsl_emb (Freescale Embedded Performance Monitors). Signed-off-by: A

Re: [PATCH 7/8] Split out the ioid fetching/checking logic

2008-02-04 Thread Benjamin Herrenschmidt
On Wed, 2008-01-30 at 01:14 +1100, Michael Ellerman wrote: > Split out the ioid fetching and checking logic so we can use it elsewhere > in a subsequent patch. > > Signed-off-by: Michael Ellerman <[EMAIL PROTECTED]> Acked-by: Benjamin Herrenschmidt <[EMAIL PROTECTED]> > --- > arch/powerpc/plat

Re: [PATCH 6/8] Add support to cell_iommu_setup_page_tables() for multiple windows

2008-02-04 Thread Benjamin Herrenschmidt
On Wed, 2008-01-30 at 01:14 +1100, Michael Ellerman wrote: > Add support to cell_iommu_setup_page_tables() for handling two windows, > the dynamic window and the fixed window. A fixed window size of 0 > indicates that there is no fixed window at all. > > Currently there are no callers who pass a

Re: [PATCH 5/8] Split out the IOMMU logic from cell_dma_dev_setup()

2008-02-04 Thread Benjamin Herrenschmidt
On Wed, 2008-01-30 at 01:14 +1100, Michael Ellerman wrote: > Split the IOMMU logic out from cell_dma_dev_setup() into a separate > function. If we're not using dma_direct_ops or dma_iommu_ops we don't > know what the hell's going on, so BUG. > > Signed-off-by: Michael Ellerman <[EMAIL PROTECTED]>

Re: [PATCH 3/8] Split out the logic that allocates struct iommus

2008-02-04 Thread Benjamin Herrenschmidt
On Wed, 2008-01-30 at 01:13 +1100, Michael Ellerman wrote: > Split out the logic that allocates a struct iommu into a separate > function. This can fail however the calling code has never cared - so > just return if we can't allocate an iommu. > > Signed-off-by: Michael Ellerman <[EMAIL PROTECTED

Re: [PATCH 1/3] Add set_dma_ops() to match get_dma_ops().

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 21:45 +1100, Michael Ellerman wrote: > Signed-off-by: Michael Ellerman <[EMAIL PROTECTED]> Acked-by: Benjamin Herrenschmidt <[EMAIL PROTECTED]> > --- > include/asm-powerpc/dma-mapping.h |5 + > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/incl

Re: [PATCH 2/3] Allocate the hash table under 1G on cell

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 21:45 +1100, Michael Ellerman wrote: > In order to support our IOMMU performance trick, we need the hash table to be > inside the DMA window. This is usually 2G, but let's make sure the hash table > is under 1G as that will satisfy the IOMMU requirements and also means the >

Re: [PATCH 4/4] Avoid DMA exception when using axon_msi with IOMMU

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 16:59 +1100, Michael Ellerman wrote: > There's a brown-paper-bag bug in axon_msi, we pass the address of our > FIFO directly to the hardware, without DMA mapping it. This leads to > DMA exceptions if you enable MSI & the IOMMU. > > The fix is to correctly DMA map the fifo, d

Re: [PATCH 3/4] Convert axon_msi to an of_platform driver

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 16:59 +1100, Michael Ellerman wrote: > Now that we create of_platform devices earlier on cell, we can make the > axon_msi driver an of_platform driver. This makes the code cleaner in > several ways, and most importantly means we have a struct device. > > Signed-off-by: Micha

Re: [PATCH 2/4] Create and hook up of_platform_device_shutdown

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 16:59 +1100, Michael Ellerman wrote: > Although of_platform_device's can have a shutdown routine, at the moment > the bus code doesn't actually call it. So add the required glue to > hook the shutdown routine. > > Signed-off-by: Michael Ellerman <[EMAIL PROTECTED]> Acked-by

Re: [PATCH 1/4] Search for and publish cell OF platform devices earlier

2008-02-04 Thread Benjamin Herrenschmidt
On Fri, 2008-01-25 at 16:59 +1100, Michael Ellerman wrote: > Currently cell publishes OF devices at device_initcall() time, which > means the earliest a driver can bind to a device is also device_initcall() > time. We have a driver we want to register before other devices, so > publish the devices

Re: [PATCH] Add oprofile support for e300

2008-02-04 Thread Andy Fleming
On Feb 4, 2008, at 17:14, Andy Fleming wrote: > The e300 c3 and c4 variants support hardware performance monitor > counters which > are identical to those found in the e500. Please ignore. I will send a new version that includes all the changes I apparently missed a change I had already com

Re: Commit for mm/page_alloc.c breaks boot process on my machine

2008-02-04 Thread Benjamin Herrenschmidt
> > It's a virtual address so it depends on the value of CONFIG_KERNEL_START > as to whether this is a user program address or not. Shouldn't it be PAGE_OFFSET ? I mean, CONFIG_KERNEL_START should work on powerpc, but still... Ben. ___ Linuxppc-dev

Re: Commit for mm/page_alloc.c breaks boot process on my machine

2008-02-04 Thread Michael Ellerman
On Mon, 2008-02-04 at 23:20 +0100, Gerhard Pircher wrote: > Original-Nachricht > > Datum: Mon, 4 Feb 2008 10:42:32 + > > Von: Mel Gorman <[EMAIL PROTECTED]> > > An: Gerhard Pircher <[EMAIL PROTECTED]> > > CC: [EMAIL PROTECTED], linuxppc-dev@ozlabs.org > > Betreff: Re: Commit f

Re: [PATCH 2/2] ehea: add memory remove hotplug support

2008-02-04 Thread Michael Ellerman
On Mon, 2008-02-04 at 16:24 +0100, Jan-Bernd Themann wrote: > On Monday 04 February 2008 15:46, Michael Ellerman wrote: > > On Mon, 2008-02-04 at 14:04 +0100, Jan-Bernd Themann wrote: > > > Add memory remove hotplug support > > > > @@ -3559,6 +3578,10 @@ int __init ehea_module_init(void) > > >

[PATCH] Add oprofile support for e300

2008-02-04 Thread Andy Fleming
The e300 c3 and c4 variants support hardware performance monitor counters which are identical to those found in the e500. Signed-off-by: Andy Fleming <[EMAIL PROTECTED]> --- arch/powerpc/kernel/cputable.c |4 ++-- arch/powerpc/platforms/Kconfig |1 + 2 files changed, 3 insertions(+), 2 de

[PATCH] Made FSL Book-E PMC support more generic

2008-02-04 Thread Andy Fleming
Some of the more recent e300 cores have the same performance monitor implementation as the e500. e300 isn't book-e, so the name isn't really appropriate. In preparation for e300 support, rename a bunch of fsl_booke things to say fsl_emb (Freescale Embedded Performance Monitors). Signed-off-by: A

Re: 2.6.24-mm1: ppc32: too few arguments to function 'reserve_bootmem'

2008-02-04 Thread Andrew Morton
On Mon, 4 Feb 2008 21:29:02 +0100 Mariusz Kozlowski <[EMAIL PROTECTED]> wrote: > Hello, > > This is from ppc32: > > CC arch/powerpc/mm/mem.o > arch/powerpc/mm/mem.c: In function 'do_init_bootmem': > arch/powerpc/mm/mem.c:256: error: too few arguments to function > 'reserve_bootmem'

Re: [PATCH 1/1] [PPC] 8xx swap bug-fix

2008-02-04 Thread Vitaly Bordug
On Mon, 4 Feb 2008 12:24:21 -0600 Scott Wood wrote: > On Sat, Feb 02, 2008 at 12:22:17PM +0100, Jochen Friedrich wrote: > > Hi Yuri, > > > > > Here is the patch which makes Linux-2.6 swap routines operate > > > correctly on the ppc-8xx-based machines. > > > > is there any 8xx board left which i

Re: Commit for mm/page_alloc.c breaks boot process on my machine

2008-02-04 Thread Gerhard Pircher
Original-Nachricht > Datum: Mon, 4 Feb 2008 10:42:32 + > Von: Mel Gorman <[EMAIL PROTECTED]> > An: Gerhard Pircher <[EMAIL PROTECTED]> > CC: [EMAIL PROTECTED], linuxppc-dev@ozlabs.org > Betreff: Re: Commit for mm/page_alloc.c breaks boot process on my machine > > > > > 2. An

Re: compile quirk linux-2.6.24 (with workaround)

2008-02-04 Thread Josh Boyer
On Sun, 3 Feb 2008 17:29:05 +0100 Bernhard Reiter <[EMAIL PROTECTED]> wrote: > Dear linux powerpc Maintainers and Users, > > recently I have tried to compile a new kernel on a Debian sarge ppc > system (PowerBook5,6 MacRISC3 Power Macintosh). > > The build system bailed out with >BOOTCC

Re: [PATCH 08/11] [POWERPC] qe_lib: implement QE GTM support

2008-02-04 Thread Anton Vorontsov
On Mon, Feb 04, 2008 at 02:30:04PM -0600, Scott Wood wrote: > On Sun, Feb 03, 2008 at 08:10:19PM +0300, Anton Vorontsov wrote: > > GTM stands for General-purpose Timers Module and able to generate > > timer{1,2,3,4} interrupts. > > > > There are several limitations in this support: > > 1. Cascaded

Re: [RFC][PATCH] PowerPC: 4xx PCIe indirect DCR spinlock fix.

2008-02-04 Thread Benjamin Herrenschmidt
On Mon, 2008-02-04 at 21:27 +0300, Valentine Barshak wrote: > Since we have mfdcri() and mtdcri() as macros, we can't use constructions, > such > as "mtdcri(base, reg, mfdcri(base, reg) | val)". In this case the mfdcri() > stuff > is not evaluated first. It's evaluated inside the mtdcr() macro a

Re: [PATCH 08/11] [POWERPC] qe_lib: implement QE GTM support

2008-02-04 Thread Scott Wood
On Sun, Feb 03, 2008 at 08:10:19PM +0300, Anton Vorontsov wrote: > GTM stands for General-purpose Timers Module and able to generate > timer{1,2,3,4} interrupts. > > There are several limitations in this support: > 1. Cascaded (32 bit) timers unimplemented (1-2, 3-4). >This is straightforward

Re: 2.6.24-mm1: ppc32: too few arguments to function 'reserve_bootmem'

2008-02-04 Thread Mariusz Kozlowski
Hello, This is from ppc32: CC arch/powerpc/mm/mem.o arch/powerpc/mm/mem.c: In function 'do_init_bootmem': arch/powerpc/mm/mem.c:256: error: too few arguments to function 'reserve_bootmem' arch/powerpc/mm/mem.c:261: error: too few arguments to function 'reserve_bootmem' Leftover

Re: [PATCH] Fix ext4 bitops

2008-02-04 Thread Geert Uytterhoeven
On Mon, 4 Feb 2008, Aneesh Kumar K.V wrote: > On Sun, Feb 03, 2008 at 01:39:02PM +0100, Geert Uytterhoeven wrote: > > On Sun, 3 Feb 2008, Heiko Carstens wrote: > > > On Fri, Feb 01, 2008 at 10:04:04PM +0100, Bastian Blank wrote: > > > > On Fri, Feb 01, 2008 at 12:22:57PM -0800, Andrew Morton wrote:

[RFC][PATCH] PowerPC: 4xx PCIe indirect DCR spinlock fix.

2008-02-04 Thread Valentine Barshak
Since we have mfdcri() and mtdcri() as macros, we can't use constructions, such as "mtdcri(base, reg, mfdcri(base, reg) | val)". In this case the mfdcri() stuff is not evaluated first. It's evaluated inside the mtdcr() macro and we have the dcr_ind_lock spinlock acquired twice. To avoid this error,

Re: [PATCH 1/1] [PPC] 8xx swap bug-fix

2008-02-04 Thread Scott Wood
On Sat, Feb 02, 2008 at 12:22:17PM +0100, Jochen Friedrich wrote: > Hi Yuri, > > > Here is the patch which makes Linux-2.6 swap routines operate correctly on > > the ppc-8xx-based machines. > > is there any 8xx board left which isn't ported to ARCH=powerpc? More importantly, is this something t

Re: Kernel oops while dumping user core.

2008-02-04 Thread Scott Wood
Benjamin Herrenschmidt wrote: > On Thu, 2008-01-31 at 16:10 -0600, Rune Torgersen wrote: >> Scott Wood wrote: >>> Changing update_mmu_cache() to always call flush_dcache_icache_page() >>> fixes it, though a better performing fix would probably be to add an >>> exception table entry for the dcbst. >

Re: [PATCH 4/5] ehea: fix phyp checkpatch complaints

2008-02-04 Thread Scott Wood
Doug Maxey wrote: > On Fri, 01 Feb 2008 13:23:45 CST, Scott Wood wrote: >> On Thu, Jan 31, 2008 at 08:20:50PM -0600, Doug Maxey wrote: >>> /* input param R5 */ >>> -#define H_ALL_RES_QP_EQPO EHEA_BMASK_IBM(9, 11) > ... >>> +#define H_ALL_RES_QP_EQPOEHEA_BMASK_IBM(9, 11) > ... >> This w

Re: [PATCH 05/11] [POWERPC] qe_lib: support for gpio_set_dedicated

2008-02-04 Thread Timur Tabi
Anton Vorontsov wrote: > +static int qe_gpio_set_dedicated(struct gpio_chip *gc, unsigned int gpio, > + int func) > +{ > + struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); > + struct qe_gpio_chip *qe_gc = to_qe_gpio_chip(mm_gc); > + struct port_regs

Re: Moving from 2.6.14 (ppc) to 2.6.20 (powerpc): problems with PCI-PCI bridge

2008-02-04 Thread Jon Loeliger
Johan Borkhuis wrote: > Hello, > > I was using kernel version 2.6.14 (ppc) on a MVME3100 board (MPC8540 > processor). We are planning to move to 2.6.20 (powerpc), but I have some > problems with the initialization of a PCI-PCI bridge. > Connected to the MVME3100 board is a PCI-PCI bridge (HiNT,

Re: compile quirk linux-2.6.24 (with workaround)

2008-02-04 Thread Grant Likely
On 2/4/08, Bernhard Reiter <[EMAIL PROTECTED]> wrote: > On Monday 04 February 2008 10:51, Sven Luther wrote: > > You should normally not need to build the 4xx bootloader part. Make sure > > that, i don't know why this happens. Can you look into > > arch/powerpc/boot/Makefile, to see what option ena

Re: Build failure with 2.6.24-mm1

2008-02-04 Thread Greg KH
On Mon, Feb 04, 2008 at 02:19:17AM -0800, Andrew Morton wrote: > On Mon, 4 Feb 2008 15:37:43 +0530 Balbir Singh <[EMAIL PROTECTED]> wrote: > > > * Balbir Singh <[EMAIL PROTECTED]> [2008-02-04 15:35:09]: > > > > I just saw the following build failure on a power machine. > > > > In file included f

[PATCH] [POWERPC] of: add alias helper functions.

2008-02-04 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> Add helper functions for translating back and forth between alias properties and device tree nodes. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- drivers/of/base.c | 80 include/linux/of.h |

Re: [2.6 patch] powerpc: free_property() mustn't be __init

2008-02-04 Thread Stephen Rothwell
On Wed, 30 Jan 2008 22:03:13 +0200 Adrian Bunk <[EMAIL PROTECTED]> wrote: > > This patch fixes the following section mismatch: > > <-- snip --> > > ... > WARNING: vmlinux.o(.text+0x55648): Section mismatch in reference from the > function .free_node() to the function .init.text:.free_property(

Re: [PATCH 2/2] ehea: add memory remove hotplug support

2008-02-04 Thread Jan-Bernd Themann
On Monday 04 February 2008 15:46, Michael Ellerman wrote: > On Mon, 2008-02-04 at 14:04 +0100, Jan-Bernd Themann wrote: > > Add memory remove hotplug support > > @@ -3559,6 +3578,10 @@ int __init ehea_module_init(void) > > if (ret) > > ehea_info("failed registering reboot notifier"

[PATCH] PowerPC: add missing native dcr dcr_ind_lock spinlock

2008-02-04 Thread Valentine Barshak
The include/asm-powerpc/dcr-native.h declares extern spinlock_t dcr_ind_lock; but it's actually isn't defined. This patch adds a missing dcr_ind_lock. Signed-off-by: Valentine Barshak <[EMAIL PROTECTED]> --- arch/powerpc/sysdev/dcr.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)

Re: [PATCH] [POWERPC] qe_lib: fix few fluffy negligences (was: Re: [PATCH 1/5] [POWERPC] qe_lib and users: get rid of most device_types and model)

2008-02-04 Thread Stephen Rothwell
On Mon, 4 Feb 2008 16:46:17 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > On Tue, Feb 05, 2008 at 12:13:18AM +1100, Stephen Rothwell wrote: > > > > If you don't care about the returned length (argument three to > > of_get_property), you can just pass NULL (and dispense with "size"). > > Als

Re: [PATCH 2/2] ehea: add memory remove hotplug support

2008-02-04 Thread Michael Ellerman
On Mon, 2008-02-04 at 14:04 +0100, Jan-Bernd Themann wrote: > Add memory remove hotplug support > > Signed-off-by: Jan-Bernd Themann <[EMAIL PROTECTED]> > > --- > Comment: This patch depends on the following patch that > exports the symbols > register_memory_notifier() > unregister_memory_n

Re: [PATCH] PowerPC: add missing native dcr dcr_ind_lock spinlock

2008-02-04 Thread Valentine Barshak
Oops, sorry, please discard this one. DEFINE_SPINLOCK should be used here. Valentine Barshak wrote: > The include/asm-powerpc/dcr-native.h declares extern spinlock_t dcr_ind_lock, > but it's actually isn't defined. This patch adds a missing dcr_ind_lock. > > Signed-off-by: Valentine Barshak <[EMA

[PATCH] PowerPC: add missing native dcr dcr_ind_lock spinlock

2008-02-04 Thread Valentine Barshak
The include/asm-powerpc/dcr-native.h declares extern spinlock_t dcr_ind_lock, but it's actually isn't defined. This patch adds a missing dcr_ind_lock. Signed-off-by: Valentine Barshak <[EMAIL PROTECTED]> --- arch/powerpc/sysdev/dcr.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)

[PATCH] [POWERPC] qe_lib: fix few fluffy negligences (was: Re: [PATCH 1/5] [POWERPC] qe_lib and users: get rid of most device_types and model)

2008-02-04 Thread Anton Vorontsov
On Tue, Feb 05, 2008 at 12:13:18AM +1100, Stephen Rothwell wrote: > Hi Anton, > > I know this is late, but a couple of comments anyway. > > On Thu, 24 Jan 2008 18:39:59 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > > > +++ b/arch/powerpc/sysdev/qe_lib/qe.c > > @@ -65,17 +65,22 @@ static ph

Re: [PATCH 7/9] powerpc: add MPC837x RDB platform support

2008-02-04 Thread Stephen Rothwell
Hi Kim, Again, a bit late but a couple of comments. On Thu, 24 Jan 2008 20:47:11 -0600 Kim Phillips <[EMAIL PROTECTED]> wrote: > > +static struct of_device_id mpc837x_ids[] = { Make this __initdata, please. > +static void __init mpc837x_rdb_init_IRQ(void) > +{ > + struct device_node *np; >

Re: [PATCH 1/9] powerpc: fold the mpc8313 platform into the mpc831x platform

2008-02-04 Thread Stephen Rothwell
Hi Kim, I know this is late, but just a trivial comment. On Thu, 24 Jan 2008 20:45:51 -0600 Kim Phillips <[EMAIL PROTECTED]> wrote: > > --- a/arch/powerpc/platforms/83xx/mpc8313_rdb.c > +++ b/arch/powerpc/platforms/83xx/mpc831x_rdb.c > @@ -1,7 +1,7 @@ > /* > - * arch/powerpc/platforms/83xx/mpc83

patches "using mii-bitbang on different processor ports"

2008-02-04 Thread Sergej Stepanov
Hello! I am about this two patches. http://www.spinics.net/lists/netdev/msg45778.html http://www.spinics.net/lists/netdev/msg47159.html They was not applied. Could they be picked? Thank you Sergej. ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org

Re: [PATCH 01/11] [POWERPC] Implement support for the GPIO LIB API

2008-02-04 Thread Anton Vorontsov
On Sun, Feb 03, 2008 at 01:17:43PM -0800, David Brownell wrote: > On Sunday 03 February 2008, Anton Vorontsov wrote: > > This patch implements support for the GPIO LIB API. Two calls > > unimplemented though: irq_to_gpio and gpio_to_irq. > > Also gpio_cansleep(). > > > > +Example of two SOC GPIO

Re: [PATCH 1/5] [POWERPC] qe_lib and users: get rid of most device_types and model

2008-02-04 Thread Stephen Rothwell
Hi Anton, I know this is late, but a couple of comments anyway. On Thu, 24 Jan 2008 18:39:59 +0300 Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > +++ b/arch/powerpc/sysdev/qe_lib/qe.c > @@ -65,17 +65,22 @@ static phys_addr_t qebase = -1; > phys_addr_t get_qe_base(void) > { > struct device

[PATCH 2/2] ehea: add memory remove hotplug support

2008-02-04 Thread Jan-Bernd Themann
Add memory remove hotplug support Signed-off-by: Jan-Bernd Themann <[EMAIL PROTECTED]> --- Comment: This patch depends on the following patch that exports the symbols register_memory_notifier() unregister_memory_notifier() http://lkml.org/lkml/2008/2/1/293 drivers/net/ehea/ehea_main.c

[PATCH 1/2] ehea: kdump support

2008-02-04 Thread Jan-Bernd Themann
This patch adds kdump support to the ehea driver. As the firmware doesn't free resource handles automatically, the driver has to run an as simple as possible free resource function in case of a crash shutdown. The function iterates over two arrays freeing all resource handles which are stored there

[PATCH 0/2] ehea: kdump & memory remove support

2008-02-04 Thread Jan-Bernd Themann
This patch set adds support for kdump and hotplug memory remove to the eHEA driver. The "memory remove" patch depends on the following patch that has been posted a few days ago. That patch exports the symbols  - register_memory_notifier()  - unregister_memory_notifier() http://lkml.org/lkml/2008

Re: Commit for mm/page_alloc.c breaks boot process on my machine

2008-02-04 Thread Mel Gorman
On (01/02/08 22:06), Gerhard Pircher didst pronounce: > > Original-Nachricht > > Datum: Fri, 1 Feb 2008 20:25:18 + > > Von: Mel Gorman <[EMAIL PROTECTED]> > > An: Gerhard Pircher <[EMAIL PROTECTED]> > > CC: [EMAIL PROTECTED] > > Betreff: Re: Commit for mm/page_alloc.c breaks

Re: compile quirk linux-2.6.24 (with workaround)

2008-02-04 Thread Bernhard Reiter
On Monday 04 February 2008 10:51, Sven Luther wrote: > On Sun, Feb 03, 2008 at 05:29:05PM +0100, Bernhard Reiter wrote: > > Dear linux powerpc Maintainers and Users, > > > > recently I have tried to compile a new kernel on a Debian sarge ppc > > system (PowerBook5,6 MacRISC3 Power Macintosh). > > T

Re: Build failure with 2.6.24-mm1

2008-02-04 Thread Andrew Morton
On Mon, 4 Feb 2008 15:37:43 +0530 Balbir Singh <[EMAIL PROTECTED]> wrote: > * Balbir Singh <[EMAIL PROTECTED]> [2008-02-04 15:35:09]: > > I just saw the following build failure on a power machine. > > In file included from include/acpi/platform/acenv.h:140, > from include/acpi/a

Build failure with 2.6.24-mm1

2008-02-04 Thread Balbir Singh
* Balbir Singh <[EMAIL PROTECTED]> [2008-02-04 15:35:09]: I just saw the following build failure on a power machine. In file included from include/acpi/platform/acenv.h:140, from include/acpi/acpi.h:54, from include/acpi/acpi_bus.h:31, from drive

Re: compile quirk linux-2.6.24 (with workaround)

2008-02-04 Thread Sven Luther
On Sun, Feb 03, 2008 at 05:29:05PM +0100, Bernhard Reiter wrote: > Dear linux powerpc Maintainers and Users, > > recently I have tried to compile a new kernel on a Debian sarge ppc > system (PowerBook5,6 MacRISC3 Power Macintosh). This is a G4 based system. > The build system bailed out with >

Re: [PATCH] Fix ext4 bitops

2008-02-04 Thread Aneesh Kumar K.V
On Mon, Feb 04, 2008 at 10:24:36AM +0100, Heiko Carstens wrote: > > > > > | fs/ext4/mballoc.c: In function 'ext4_mb_generate_buddy': > > > > > | fs/ext4/mballoc.c:954: error: implicit declaration of function > > > > > 'generic_find_next_le_bit' > > > > > > > > > > The s390 specific bitops uses pa

Moving from 2.6.14 (ppc) to 2.6.20 (powerpc): problems with PCI-PCI bridge

2008-02-04 Thread Johan Borkhuis
Hello, I was using kernel version 2.6.14 (ppc) on a MVME3100 board (MPC8540 processor). We are planning to move to 2.6.20 (powerpc), but I have some problems with the initialization of a PCI-PCI bridge. Connected to the MVME3100 board is a PCI-PCI bridge (HiNT, PCI6150, 3388:0022). When using

Re: [PATCH] Fix ext4 bitops

2008-02-04 Thread Heiko Carstens
> > > > | fs/ext4/mballoc.c: In function 'ext4_mb_generate_buddy': > > > > | fs/ext4/mballoc.c:954: error: implicit declaration of function > > > > 'generic_find_next_le_bit' > > > > > > > > The s390 specific bitops uses parts of the generic implementation. > > > > Include the correct header. > >