Lines Matching refs:spp
97 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()
193 u32 **spm, *spp; in SYSCALL_DEFINE3() local
237 spp = *spm; in SYSCALL_DEFINE3()
238 if (!spp) { in SYSCALL_DEFINE3()
239 spp = (u32 *)get_zeroed_page(GFP_KERNEL); in SYSCALL_DEFINE3()
240 if (!spp) in SYSCALL_DEFINE3()
242 *spm = spp; in SYSCALL_DEFINE3()
244 spp += (addr >> PAGE_SHIFT) & (SBP_L1_COUNT - 1); in SYSCALL_DEFINE3()
256 if (__copy_from_user(spp, map, nw * sizeof(u32))) in SYSCALL_DEFINE3()