Lines Matching refs:csp
502 unsigned long sp, csp, nitems; in create_elf_fdpic_tables() local
605 csp = sp; in create_elf_fdpic_tables()
611 csp -= sp & 15UL; in create_elf_fdpic_tables()
675 csp -= ei_index * sizeof(elf_addr_t); in create_elf_fdpic_tables()
678 if (copy_to_user((void __user *)csp, mm->saved_auxv, in create_elf_fdpic_tables()
683 csp -= (bprm->envc + 1) * sizeof(elf_caddr_t); in create_elf_fdpic_tables()
684 envp = (elf_caddr_t __user *) csp; in create_elf_fdpic_tables()
685 csp -= (bprm->argc + 1) * sizeof(elf_caddr_t); in create_elf_fdpic_tables()
686 argv = (elf_caddr_t __user *) csp; in create_elf_fdpic_tables()
689 csp -= sizeof(unsigned long); in create_elf_fdpic_tables()
690 if (put_user(bprm->argc, (unsigned long __user *) csp)) in create_elf_fdpic_tables()
693 BUG_ON(csp != sp); in create_elf_fdpic_tables()