Searched refs:tbuf_old (Results 1 - 3 of 3) sorted by path

/linux-master/ipc/
H A Dmsg.c375 struct msqid_ds tbuf_old; local
377 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
380 out->msg_perm.uid = tbuf_old.msg_perm.uid;
381 out->msg_perm.gid = tbuf_old.msg_perm.gid;
382 out->msg_perm.mode = tbuf_old.msg_perm.mode;
384 if (tbuf_old.msg_qbytes == 0)
385 out->msg_qbytes = tbuf_old.msg_lqbytes;
387 out->msg_qbytes = tbuf_old.msg_qbytes;
H A Dsem.c1580 struct semid_ds tbuf_old; local
1582 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
1585 out->sem_perm.uid = tbuf_old.sem_perm.uid;
1586 out->sem_perm.gid = tbuf_old.sem_perm.gid;
1587 out->sem_perm.mode = tbuf_old.sem_perm.mode;
H A Dshm.c887 struct shmid_ds tbuf_old; local
889 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
892 out->shm_perm.uid = tbuf_old.shm_perm.uid;
893 out->shm_perm.gid = tbuf_old.shm_perm.gid;
894 out->shm_perm.mode = tbuf_old.shm_perm.mode;

Completed in 220 milliseconds