[PATCH 0/4] Patches from my local tree

2010-11-17 Thread mikey
Below are a few patches from my local tree ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH 1/4] powerpc: remove unneeded cpu_setup/restore from POWER7 cputable entry

2010-11-17 Thread mikey
These are not needed so just remove them Signed-off-by: Michael Neuling mi...@neuling.org --- arch/powerpc/kernel/cputable.c |2 -- arch/powerpc/kernel/misc.S |5 - 2 files changed, 7 deletions(-) Index: linux-2.6-ozlabs/arch/powerpc/kernel/cputable.c

[PATCH 2/4] powerpc: remove POWER6 oprofile workarounds for POWER7

2010-11-17 Thread mikey
These are not needed on POWER7 so remove them. Signed-off-by: Michael Neuling mi...@neuling.org --- arch/powerpc/kernel/cputable.c |4 1 file changed, 4 deletions(-) Index: linux-2.6-ozlabs/arch/powerpc/kernel/cputable.c

[PATCH 3/4] powerpc: add POWER7+ cputable entry

2010-11-17 Thread mikey
This adds the POWER7+ cputable entry for the PVR 0x004a. Rest is the same as vanilla POWER7. Signed-off-by: Michael Neuling mi...@neuling.org --- arch/powerpc/kernel/cputable.c | 16 1 file changed, 16 insertions(+) Index: linux-2.6-ozlabs/arch/powerpc/kernel/cputable.c

[PATCH 4/4] powerpc: hash_preload: avoid avoidable void

2010-11-17 Thread mikey
Change pgdir from a void to real type. Having this as a void is stupid and has already caused 1 bug. Signed-off-by: Michael Neuling mi...@neuling.org --- arch/powerpc/mm/hash_utils_64.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: