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()
186 u32 **spm, *spp; in SYSCALL_DEFINE3() local
245 spp = *spm; in SYSCALL_DEFINE3()
246 if (!spp) { in SYSCALL_DEFINE3()
247 spp = (u32 *)get_zeroed_page(GFP_KERNEL); in SYSCALL_DEFINE3()
248 if (!spp) in SYSCALL_DEFINE3()
250 *spm = spp; in SYSCALL_DEFINE3()
252 spp += (addr >> PAGE_SHIFT) & (SBP_L1_COUNT - 1); in SYSCALL_DEFINE3()
264 if (__copy_from_user(spp, map, nw * sizeof(u32))) in SYSCALL_DEFINE3()