Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb

* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb:
kgdb: don't needlessly skip PAGE_USER test for Fsl booke

-5
-5
arch/powerpc/mm/fsl_booke_mmu.c
··· 155 155 if (mmu_has_feature(MMU_FTR_BIG_PHYS)) 156 156 TLBCAM[index].MAS7 = (u64)phys >> 32; 157 157 158 - #ifndef CONFIG_KGDB /* want user access for breakpoints */ 159 158 if (flags & _PAGE_USER) { 160 159 TLBCAM[index].MAS3 |= MAS3_UX | MAS3_UR; 161 160 TLBCAM[index].MAS3 |= ((flags & _PAGE_RW) ? MAS3_UW : 0); 162 161 } 163 - #else 164 - TLBCAM[index].MAS3 |= MAS3_UX | MAS3_UR; 165 - TLBCAM[index].MAS3 |= ((flags & _PAGE_RW) ? MAS3_UW : 0); 166 - #endif 167 162 168 163 tlbcam_addrs[index].start = virt; 169 164 tlbcam_addrs[index].limit = virt + size - 1;