Lines Matching refs:spm
97 u32 **spm, *spp; in subpage_prot_clear() local
109 spm = spt->low_prot; in subpage_prot_clear()
111 spm = spt->protptrs[addr >> SBP_L3_SHIFT]; in subpage_prot_clear()
112 if (!spm) in subpage_prot_clear()
115 spp = spm[(addr >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1)]; in subpage_prot_clear()
193 u32 **spm, *spp; in SYSCALL_DEFINE3() local
226 spm = spt->low_prot; in SYSCALL_DEFINE3()
228 spm = spt->protptrs[addr >> SBP_L3_SHIFT]; in SYSCALL_DEFINE3()
229 if (!spm) { in SYSCALL_DEFINE3()
230 spm = (u32 **)get_zeroed_page(GFP_KERNEL); in SYSCALL_DEFINE3()
231 if (!spm) in SYSCALL_DEFINE3()
233 spt->protptrs[addr >> SBP_L3_SHIFT] = spm; in SYSCALL_DEFINE3()
236 spm += (addr >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1); in SYSCALL_DEFINE3()
237 spp = *spm; in SYSCALL_DEFINE3()
242 *spm = spp; in SYSCALL_DEFINE3()