Lines Matching refs:spp
92 u32 **spm, *spp; in subpage_prot_clear() local
115 spp = spm[(addr >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1)]; in subpage_prot_clear()
116 if (!spp) in subpage_prot_clear()
118 spp += (addr >> PAGE_SHIFT) & (SBP_L1_COUNT - 1); in subpage_prot_clear()
125 memset(spp, 0, nw * sizeof(u32)); in subpage_prot_clear()
195 u32 **spm, *spp; in SYSCALL_DEFINE3() local
254 spp = *spm; in SYSCALL_DEFINE3()
255 if (!spp) { in SYSCALL_DEFINE3()
256 spp = (u32 *)get_zeroed_page(GFP_KERNEL); in SYSCALL_DEFINE3()
257 if (!spp) in SYSCALL_DEFINE3()
259 *spm = spp; in SYSCALL_DEFINE3()
261 spp += (addr >> PAGE_SHIFT) & (SBP_L1_COUNT - 1); in SYSCALL_DEFINE3()
273 if (__copy_from_user(spp, map, nw * sizeof(u32))) in SYSCALL_DEFINE3()