Home
last modified time | relevance | path

Searched refs:txc_p (Results 1 – 2 of 2) sorted by relevance

/linux/arch/sparc/kernel/
H A Dsys_sparc_64.c568 SYSCALL_DEFINE1(sparc_adjtimex, struct __kernel_timex __user *, txc_p) in SYSCALL_DEFINE1() argument
578 if (copy_from_user(&txc, txc_p, sizeof(txc))) in SYSCALL_DEFINE1()
589 return copy_to_user(txc_p, &txc, sizeof(txc)) ? -EFAULT : ret; in SYSCALL_DEFINE1()
593 struct __kernel_timex __user *, txc_p) in SYSCALL_DEFINE2() argument
611 if (copy_from_user(&txc, txc_p, sizeof(txc))) in SYSCALL_DEFINE2()
622 return copy_to_user(txc_p, &txc, sizeof(txc)) ? -EFAULT : ret; in SYSCALL_DEFINE2()
/linux/kernel/time/
H A Dtime.c269 SYSCALL_DEFINE1(adjtimex, struct __kernel_timex __user *, txc_p) in SYSCALL_DEFINE1() argument
278 if (copy_from_user(&txc, txc_p, sizeof(struct __kernel_timex))) in SYSCALL_DEFINE1()
281 return copy_to_user(txc_p, &txc, sizeof(struct __kernel_timex)) ? -EFAULT : ret; in SYSCALL_DEFINE1()