[PATCH net-next-2.6] netdev: ucc_geth: Use is_multicast_ether_addr helper

2011-01-12 Thread Tobias Klauser
Signed-off-by: Tobias Klauser tklau...@distanz.ch --- drivers/net/ucc_geth.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index 73a3e0d..715e7b4 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/ucc_geth.c @@ -2032,7

[PATCH 1/2] powerpc: Disable mcount tracers in pseries config

2011-01-12 Thread Anton Blanchard
IRQSOFF_TRACER and STACK_TRACER force the kernel to be built with -pg which is a substantial overhead. Signed-off-by: Anton Blanchard an...@samba.org --- Index: powerpc.git/arch/powerpc/configs/pseries_defconfig === ---

[PATCH 2/2] powerpc: Enable 64kB pages and 1024 threads in pseries config

2011-01-12 Thread Anton Blanchard
- Enable 64kB pages so it gets some regular testing. - The largest POWER7 has 1024 threads so bump NR_CPUS it to match. Signed-off-by: Anton Blanchard an...@samba.org --- Index: powerpc.git/arch/powerpc/configs/pseries_defconfig

Re: [PATCH] Globally s/struct irq_host/struct irq_domain/

2011-01-12 Thread Josh Boyer
On Wed, Jan 12, 2011 at 07:53:11AM -0600, Jon Loeliger wrote: From: Jon Loeliger j...@jdl.com Just rename the irq_host structure as irq_domain to lessen the confusion around the word host. Updated a few comments and error messages to use irq_domain when refering to the structure. Suggested by

[git pull] Please pull powerpc.git next branch

2011-01-12 Thread Kumar Gala
[ I know I'm way way way way late, but combo of holidays and getting sick. Please push as these are pretty minor changes ] The following changes since commit 0c21e3aaf6ae85bee804a325aa29c325209180fd: Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/hch/hfsplus

Re: [PATCH] powerpc: fix warning when compiling immap_qe.h

2011-01-12 Thread Kumar Gala
On Oct 14, 2010, at 3:15 PM, Timur Tabi wrote: Fix the warnings genereted by arch/powerpc/include/asm/immap_qe.h when CONFIG_PHYS_ADDR_T_64BIT is defined: immap_qe.h: In function 'immrbar_virt_to_phys': immap_qe.h:472:8: warning: cast from pointer to integer of different size

Re: [PATCH] powerpc/85xx: fix compatible properties of the P1022DS DMA nodes used for audio

2011-01-12 Thread Kumar Gala
On Dec 3, 2010, at 10:52 AM, Timur Tabi wrote: In order to prevent the fsl_dma driver from claiming the DMA channels that the P1022DS audio driver needs, the compatible properties for those nodes must say fsl,ssi-dma-channel instead of fsl,eloplus-dma-channel. Signed-off-by: Timur Tabi

Re: [PATCH net-next-2.6] netdev: ucc_geth: Use is_multicast_ether_addr helper

2011-01-12 Thread David Miller
From: Tobias Klauser tklau...@distanz.ch Date: Wed, 12 Jan 2011 10:31:01 +0100 Signed-off-by: Tobias Klauser tklau...@distanz.ch Applied. ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH] powerpc: Fix accumulate_stolen_time() vs. CONFIG_PREEMPT

2011-01-12 Thread Benjamin Herrenschmidt
The function accumulate_stolen_time() is called on pSeries to scan the hypervisor event log every now and then. This happens very early during the exception entry process, while the PACA soft/hard_enabled fields don't properly reflect the state of the system, which is basically hard irq disabled.