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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/ipc/
H A Dmsg.c366 struct msqid_ds tbuf_old; local
368 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
371 out->uid = tbuf_old.msg_perm.uid;
372 out->gid = tbuf_old.msg_perm.gid;
373 out->mode = tbuf_old.msg_perm.mode;
375 if (tbuf_old.msg_qbytes == 0)
376 out->qbytes = tbuf_old.msg_lqbytes;
378 out->qbytes = tbuf_old.msg_qbytes;
H A Dshm.c507 struct shmid_ds tbuf_old; local
509 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
512 out->uid = tbuf_old.shm_perm.uid;
513 out->gid = tbuf_old.shm_perm.gid;
514 out->mode = tbuf_old.shm_perm.mode;
H A Dsem.c840 struct semid_ds tbuf_old; local
842 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
845 out->uid = tbuf_old.sem_perm.uid;
846 out->gid = tbuf_old.sem_perm.gid;
847 out->mode = tbuf_old.sem_perm.mode;

Completed in 59 milliseconds