Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Sun, 2011-10-09 at 12:30 +0200, Eli Cohen wrote: Ideally you want to avoid that swapping altogether and use the right accessor that indicates that your register is BE to start with. IE. remove the swab32 completely and then use something like iowrite32be() instead of writel(). I

RE: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread David Laight
Then, this statement: *(u32 *) (tx_desc-ctrl.vlan_tag) |= ring-doorbell_qpn; ... instead do ... : *(u32 *) (tx_desc-ctrl.vlan_tag) |= cpu_to_be32(ring-doorbell_qpn); (Also get rid of that cast and define vlan_tag as a __be32 to start with). Agreed, casts that change the type

RE: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Mon, 2011-10-10 at 09:20 +0100, David Laight wrote: For the above I'd actually suggest making 'doorbell_qpn' have the correct endianness in order to avoid the (potential) swap every time it is set. Well, the problem is that either you'll end up swapping on x86 or you'll end up swapping on

RE: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread David Laight
What is this __iowrite64_copy... oh I see Nice, somebody _AGAIN_ added a bunch of generic IO accessors that are utterly wrong on all archs except x86 (ok, -almost-). There isn't a single bloody memory barrier in there ! Actually memory barriers shouldn't really be added to any of these

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Eli Cohen
On Mon, Oct 10, 2011 at 09:40:17AM +0100, David Laight wrote: Actually memory barriers shouldn't really be added to any of these 'accessor' functions. (Or, at least, ones without barriers should be provided.) The driver may want to to a series of writes, then a single barrier, before a

RE: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Mon, 2011-10-10 at 09:40 +0100, David Laight wrote: What is this __iowrite64_copy... oh I see Nice, somebody _AGAIN_ added a bunch of generic IO accessors that are utterly wrong on all archs except x86 (ok, -almost-). There isn't a single bloody memory barrier in there !

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Mon, 2011-10-10 at 10:47 +0200, Eli Cohen wrote: On Mon, Oct 10, 2011 at 09:40:17AM +0100, David Laight wrote: Actually memory barriers shouldn't really be added to any of these 'accessor' functions. (Or, at least, ones without barriers should be provided.) The driver may want to

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Eli Cohen
On Mon, Oct 10, 2011 at 11:01:24AM +0200, Benjamin Herrenschmidt wrote: The case where things get a bit more nasty is when you try to use MMIO for low latency small-data type transfers instead of DMA, in which case you do want the ability for the chipset to write-combine and control the

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Mon, 2011-10-10 at 11:16 +0200, Eli Cohen wrote: Until then I think we need to have the logic working right on ppc and measure if blue flame buys us any improvement in ppc. If that's not the case (e.g because write combining is not working), then maybe we should avoid using blueflame in

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Eli Cohen
On Mon, Oct 10, 2011 at 11:24:05AM +0200, Benjamin Herrenschmidt wrote: On Mon, 2011-10-10 at 11:16 +0200, Eli Cohen wrote: Until then I think we need to have the logic working right on ppc and measure if blue flame buys us any improvement in ppc. If that's not the case (e.g because write

[PATCH 0/3] Kdump support for PPC440x

2011-10-10 Thread Suzuki K. Poulose
The following series implements CRASH_DUMP support for PPC440x. The patches apply on top of power-next tree. This set also adds support for CONFIG_RELOCATABLE on 44x. I have tested the patches on Ebony and Virtex(QEMU Emulated). Testing these patches would require latest snapshot of kexec-tools

[PATCH 1/3] [powerpc32] Process dynamic relocations for kernel

2011-10-10 Thread Suzuki K. Poulose
The following patch implements the dynamic relocation processing for PPC32 kernel. relocate() accepts the target virtual address and relocates the kernel image to the same. Currently the following relocation types are handled : R_PPC_RELATIVE R_PPC_ADDR16_LO

[PATCH 2/3] [44x] Enable CONFIG_RELOCATABLE for PPC44x

2011-10-10 Thread Suzuki K. Poulose
The following patch adds relocatable support for PPC44x kernel. We find the runtime address of _stext and relocate ourselves based on the following calculation. virtual_base = ALIGN(KERNELBASE,256M) + MODULO(_stext.run,256M) relocate() is called with the

[PATCH 3/3] [44x] Enable CRASH_DUMP for 440x

2011-10-10 Thread Suzuki K. Poulose
Now that we have relocatable kernel, supporting CRASH_DUMP only requires turning the switches on for UP machines. We don't have kexec support on 47x yet. Enabling SMP support would be done as part of enabling the PPC_47x support. Signed-off-by: Suzuki K. Poulose suz...@in.ibm.com Cc: Josh

Re: [PATCH] mlx4_en: fix transmit of packages when blue frame is enabled

2011-10-10 Thread Benjamin Herrenschmidt
On Mon, 2011-10-10 at 11:29 +0200, Eli Cohen wrote: On Mon, Oct 10, 2011 at 11:24:05AM +0200, Benjamin Herrenschmidt wrote: On Mon, 2011-10-10 at 11:16 +0200, Eli Cohen wrote: Until then I think we need to have the logic working right on ppc and measure if blue flame buys us any

[PATCH 00/14] Backport 8xx TLB to 2.4

2011-10-10 Thread Joakim Tjernlund
This is a backport from 2.6 which I did to overcome 8xx CPU bugs. 8xx does not update the DAR register when taking a TLB error caused by dcbX and icbi insns which makes it very tricky to use these insns. Also the dcbst wrongly sets the the store bit when faulting into DTLB error. A few more bugs

[PATCH 02/14] 8xx: Tag DAR with 0x00f0 to catch buggy instructions.

2011-10-10 Thread Joakim Tjernlund
dcbz, dcbf, dcbi, dcbst and icbi do not set DAR when they cause a DTLB Error. Dectect this by tagging DAR with 0x00f0 at every exception exit that modifies DAR. This also fixes MachineCheck to pass DAR and DSISR as well. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se ---

[PATCH 03/14] 8xx: invalidate non present TLBs

2011-10-10 Thread Joakim Tjernlund
8xx sometimes need to load a invalid/non-present TLBs in it DTLB asm handler. These must be invalidated separately as 8xx MMU don't. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-)

[PATCH 04/14] 8xx: Fix CONFIG_PIN_TLB

2011-10-10 Thread Joakim Tjernlund
The wrong register was loaded into MD_RPN. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/ppc/kernel/head_8xx.S b/arch/ppc/kernel/head_8xx.S index b3aff21..9d8a1b5

[PATCH 06/14] 8xx: Fixup DAR from buggy dcbX instructions.

2011-10-10 Thread Joakim Tjernlund
This is an assembler version to fixup DAR not being set by dcbX, icbi instructions. There are two versions, one uses selfmodifing code, the other uses a jump table but is much bigger(default). Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 149

[PATCH 05/14] 8xx: Update TLB asm so it behaves as linux mm expects.

2011-10-10 Thread Joakim Tjernlund
Update the TLB asm to make proper use of _PAGE_DIRTY and _PAGE_ACCESSED. Get rid of _PAGE_HWWRITE too. Pros: - PRESENT is copied to ACCESSED, fixing accounting - DIRTY is mapped to 0x100, the changed bit, and is set directly when a page has been made dirty. - Proper RO/RW mapping of user

[PATCH 07/14] 8xx: CPU6 errata make DTLB error too big to fit.

2011-10-10 Thread Joakim Tjernlund
branch to common code in DTLB Miss instead. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 23 ++- 1 files changed, 2 insertions(+), 21 deletions(-) diff --git a/arch/ppc/kernel/head_8xx.S b/arch/ppc/kernel/head_8xx.S index

[PATCH 08/14] 8xx: Add missing Guarded setting in DTLB Error.

2011-10-10 Thread Joakim Tjernlund
only DTLB Miss did set this bit, DTLB Error needs too otherwise the setting is lost when the page becomes dirty. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git

[PATCH 09/14] 8xx: Restore _PAGE_WRITETHRU

2011-10-10 Thread Joakim Tjernlund
8xx has not had WRITETHRU due to lack of bits in the pte. After the recent rewrite of the 8xx TLB code, there are two bits left. Use one of them to WRITETHRU. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S |8 include/asm-ppc/pgtable.h

[PATCH 10/14] 8xx: Set correct HW pte flags in DTLB Error too

2011-10-10 Thread Joakim Tjernlund
DTLB Error needs to adjust the HW PTE bits as DTLB Miss does. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/arch/ppc/kernel/head_8xx.S b/arch/ppc/kernel/head_8xx.S index

[PATCH 12/14] 8xx: Use symbolic constants in TLB asm

2011-10-10 Thread Joakim Tjernlund
Use the PTE #defines where possible instead of hardcoded constants. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/ppc/kernel/head_8xx.S

[PATCH 11/14] 8xx: start using dcbX instructions in various copy routines

2011-10-10 Thread Joakim Tjernlund
Now that 8xx can fixup dcbX instructions, start using them where possible like every other PowerPc arch do. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/misc.S | 18 -- arch/ppc/lib/string.S | 17 - 2 files changed, 0

[PATCH 13/14] 8xx: Optimize TLB Miss handlers

2011-10-10 Thread Joakim Tjernlund
Only update pte w.r.t ACCESSED if it isn't already set Wrap ACCESSED with #ifndef NO_SWAP for too ease optimization. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 11 +-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git

[PATCH 14/14] 8xx: The TLB miss handler manages ACCESSED correctly.

2011-10-10 Thread Joakim Tjernlund
The new MMU/TLB code no longer sets ACCESSED unconditionally so remove the exception. Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- include/asm-ppc/pgtable.h | 10 -- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/include/asm-ppc/pgtable.h

[PATCH 0/3] 8xx: Large page(8MB) support for 2.4

2011-10-10 Thread Joakim Tjernlund
This adds Large page support for 8xx and uses it for all kernel RAM. Further usage is possible, IMAP_ADDR and on board flash comes to mind. There is one bit free the pte which could be used for selecting different large page sizes but that is for another day. - Dan, what do you think :) Joakim

[PATCH 1/3] 8xx: replace _PAGE_EXEC with _PAGE_PSE

2011-10-10 Thread Joakim Tjernlund
We need this bit for large pages(8MB). Adjust TLB code to not clear bit 28 Mx_RPN Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S |8 include/asm-ppc/pgtable.h |6 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git

[PATCH 2/3] 8xx: Support LARGE pages in TLB code.

2011-10-10 Thread Joakim Tjernlund
Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/kernel/head_8xx.S | 22 +++--- 1 files changed, 15 insertions(+), 7 deletions(-) diff --git a/arch/ppc/kernel/head_8xx.S b/arch/ppc/kernel/head_8xx.S index 8e3fe40..439e7f2 100644 ---

[PATCH 3/3] 8xx: Use LARGE pages for kernel RAM.

2011-10-10 Thread Joakim Tjernlund
Use the new _PAGE_PSE to map all kernel RAM with 8 MB TLBs Signed-off-by: Joakim Tjernlund joakim.tjernl...@transmode.se --- arch/ppc/mm/pgtable.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/ppc/mm/pgtable.c b/arch/ppc/mm/pgtable.c index 866ae43..56e847e

Re: [PATCH 00/14] Backport 8xx TLB to 2.4

2011-10-10 Thread Willy Tarreau
Hi Joakim, On Mon, Oct 10, 2011 at 01:30:06PM +0200, Joakim Tjernlund wrote: This is a backport from 2.6 which I did to overcome 8xx CPU bugs. 8xx does not update the DAR register when taking a TLB error caused by dcbX and icbi insns which makes it very tricky to use these insns. Also the

Re: [PATCH 1/3] [powerpc32] Process dynamic relocations for kernel

2011-10-10 Thread Scott Wood
On 10/10/2011 04:55 AM, Suzuki K. Poulose wrote: The following patch implements the dynamic relocation processing for PPC32 kernel. relocate() accepts the target virtual address and relocates the kernel image to the same. How much overhead is involved in a true relocatable kernel? Is it

Re: [PATCH 0/3] 8xx: Large page(8MB) support for 2.4

2011-10-10 Thread Willy Tarreau
Hi an, On Mon, Oct 10, 2011 at 09:22:09AM -0700, Dan Malek wrote: Hi Joakim. On Oct 10, 2011, at 4:38 AM, Joakim Tjernlund wrote: This adds Large page support for 8xx and uses it for all kernel RAM - Dan, what do you think :) Since you asked, yes it looks great :-) Now, can

Re: [PATCH 0/3] 8xx: Large page(8MB) support for 2.4

2011-10-10 Thread Dan Malek
Hi Joakim. On Oct 10, 2011, at 4:38 AM, Joakim Tjernlund wrote: This adds Large page support for 8xx and uses it for all kernel RAM - Dan, what do you think :) Since you asked, yes it looks great :-) Now, can we get this into a more contemporary kernel? I'm actually working on an

[PATCH] mlx4_en: fix endianness with blue frame support

2011-10-10 Thread Thadeu Lima de Souza Cascardo
The doorbell register was being unconditionally swapped. In x86, that meant it was being swapped to BE and written to the descriptor and to memory, depending on the case of blue frame support or writing to doorbell register. On PPC, this meant it was being swapped to LE and then swapped back to BE

Re: [PATCH] mlx4_en: fix endianness with blue frame support

2011-10-10 Thread Thadeu Lima de Souza Cascardo
On Mon, Oct 10, 2011 at 01:42:23PM -0300, Thadeu Lima de Souza Cascardo wrote: The doorbell register was being unconditionally swapped. In x86, that meant it was being swapped to BE and written to the descriptor and to memory, depending on the case of blue frame support or writing to doorbell

Re: [PATCH 0/3] 8xx: Large page(8MB) support for 2.4

2011-10-10 Thread Joakim Tjernlund
Dan Malek ppc6...@digitaldans.com wrote on 2011/10/10 18:22:09: Hi Joakim. On Oct 10, 2011, at 4:38 AM, Joakim Tjernlund wrote: This adds Large page support for 8xx and uses it for all kernel RAM - Dan, what do you think :) Since you asked, yes it looks great :-) Now, can we

Re: [PATCH 1/3] [powerpc32] Process dynamic relocations for kernel

2011-10-10 Thread Suzuki Poulose
On 10/10/11 20:45, Scott Wood wrote: On 10/10/2011 04:55 AM, Suzuki K. Poulose wrote: The following patch implements the dynamic relocation processing for PPC32 kernel. relocate() accepts the target virtual address and relocates the kernel image to the same. How much overhead is involved in

Re: [PATCH 1/3] [powerpc32] Process dynamic relocations for kernel

2011-10-10 Thread Scott Wood
On 10/10/2011 12:17 PM, Suzuki Poulose wrote: On 10/10/11 20:45, Scott Wood wrote: On 10/10/2011 04:55 AM, Suzuki K. Poulose wrote: The following patch implements the dynamic relocation processing for PPC32 kernel. relocate() accepts the target virtual address and relocates the kernel

Re: [PATCH 2/3] [44x] Enable CONFIG_RELOCATABLE for PPC44x

2011-10-10 Thread Scott Wood
On 10/10/2011 04:56 AM, Suzuki K. Poulose wrote: #if defined(CONFIG_RELOCATABLE) defined(CONFIG_44x) #define __va(x) ((void *)(unsigned long)((phys_addr_t)(x) - PHYSICAL_START + (KERNELBASE + RELOC_OFFSET))) #define __pa(x) ((unsigned long)(x) + PHYSICAL_START - (KERNELBASE +

Re: [PATCH 0/3] 8xx: Large page(8MB) support for 2.4

2011-10-10 Thread Dan Malek
On Oct 10, 2011, at 9:45 AM, Joakim Tjernlund wrote: That is an easy port but I will have to do that blind. Would you mind take this for a spin on 2.4 first? My current system is running 2.6, so I don't have much interested in testing 2.4 The more interesting part is if one should use other

Re: [PATCH] mlx4_en: fix endianness with blue frame support

2011-10-10 Thread David Miller
From: Thadeu Lima de Souza Cascardo casca...@linux.vnet.ibm.com Date: Mon, 10 Oct 2011 13:46:54 -0300 On Mon, Oct 10, 2011 at 01:42:23PM -0300, Thadeu Lima de Souza Cascardo wrote: The doorbell register was being unconditionally swapped. In x86, that meant it was being swapped to BE and

[PATCH 0/13] Hugetlb for 64-bit Freescale Book3E

2011-10-10 Thread Becky Bruce
This series of patches contains mostly cleanup code that allows the enablement of hugetlb for 64-bit Freescale BookE processors. There are also some bits that I dropped from the 32-bit release that are added back, as they are needed by other implementations. Otherwise, it's mostly a bunch of code

[PATCH 01/13] powerpc: Only define HAVE_ARCH_HUGETLB_UNMAPPED_AREA if PPC_MM_SLICES

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org If we don't have slices, we should be able to use the generic hugetlb_get_unmapped_area() code Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/include/asm/page_64.h |2 ++ arch/powerpc/mm/hugetlbpage.c |6 ++ 2

[PATCH 02/13] powerpc: hugetlb: fix huge_ptep_set_access_flags return value

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org There was an unconditional return of 1 in the original code from David Gibson, and I dropped it because it wasn't needed for FSL BOOKE 32-bit. However, not all systems (including 64-bit FSL BOOKE) do loading of the hpte from the fault handler asm and

[PATCH 03/13] powerpc: Fix booke hugetlb preload code for PPC_MM_SLICES and 64-bit

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org This patch does 2 things: It corrects the code that determines the size to write into MAS1 for the PPC_MM_SLICES case (this originally came from David Gibson and I had incorrectly altered it), and it changes the methodolody used to calculate the size

[PATCH 04/13] powerpc: Update hugetlb huge_pte_alloc and tablewalk code for FSL BOOKE

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org This updates the hugetlb page table code to handle 64-bit FSL_BOOKE. The previous 32-bit work counted on the inner levels of the page table collapsing. Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/mm/hugetlbpage.c | 48

[PATCH 05/13] powerpc: hugetlb: modify include usage for FSL BookE code

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org The original 32-bit hugetlb implementation used PPC64 vs PPC32 to determine which code path to take. However, the final hugetlb implementation for 64-bit FSL ended up shared with the FSL 32-bit code so the actual check needs to be FSL_BOOK3E vs

[PATCH 06/13] powerpc: Whitespace/comment changes to tlb_low_64e.S

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org I happened to comment this code while I was digging through it; we might as well commit that. I also made some whitespace changes - the existing code had a lot of unnecessary newlines that I found annoying when I was working on my tiny laptop. No

[PATCH 07/13] powerpc: Add hugepage support to 64-bit tablewalk code for FSL_BOOK3E

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Before hugetlb, at each level of the table, we test for !0 to determine if we have a valid table entry. With hugetlb, this compare becomes: 0 is a normal entry 0 is an invalid entry 0 is huge This works because the hugepage

[PATCH 08/13] powerpc: Add gpages reservation code for 64-bit FSL BOOKE

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org For 64-bit FSL_BOOKE implementations, gigantic pages need to be reserved at boot time by the memblock code based on the command line. This adds the call that handles the reservation, and fixes some code comments. It also removes the previous pr_err

[PATCH 09/13] powerpc: Kconfig updates for FSL BookE HUGETLB 64-bit

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Allow hugetlb to be enabled on 64b FSL_BOOK3E. No platforms enable it by default yet. Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/platforms/Kconfig.cputype |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)

[PATCH 10/13] powerpc: Update mpc85xx/corenet 32-bit defconfigs

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Results from updates via make savedefconfig. Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/configs/corenet32_smp_defconfig |8 arch/powerpc/configs/mpc85xx_defconfig |5 +

[PATCH 11/13] powerpc: Enable Hugetlb by default for 32-bit 85xx/corenet

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/configs/corenet32_smp_defconfig |1 + arch/powerpc/configs/mpc85xx_defconfig |1 + arch/powerpc/configs/mpc85xx_smp_defconfig |1 + 3 files changed, 3

[PATCH 12/13] powerpc: Update corenet64_smp_defconfig

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Updates from make savedefconfig. Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/configs/corenet64_smp_defconfig |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git

[PATCH 13/13] powerpc: Enable hugetlb by default for corenet64 platforms

2011-10-10 Thread Becky Bruce
From: Becky Bruce bec...@kernel.crashing.org Signed-off-by: Becky Bruce bec...@kernel.crashing.org --- arch/powerpc/configs/corenet64_smp_defconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/powerpc/configs/corenet64_smp_defconfig