Lines Matching defs:msginfo
464 static int msgctl_info(struct ipc_namespace *ns, int msqid, int cmd, struct msginfo *msginfo)
479 memset(msginfo, 0, sizeof(*msginfo));
480 msginfo->msgmni = ns->msg_ctlmni;
481 msginfo->msgmax = ns->msg_ctlmax;
482 msginfo->msgmnb = ns->msg_ctlmnb;
483 msginfo->msgssz = MSGSSZ;
484 msginfo->msgseg = MSGSEG;
487 msginfo->msgpool = msg_ids(ns).in_use;
488 msginfo->msgmap = atomic_read(&ns->msg_hdrs);
489 msginfo->msgtql = atomic_read(&ns->msg_bytes);
491 msginfo->msgmap = MSGMAP;
492 msginfo->msgpool = MSGPOOL;
493 msginfo->msgtql = MSGTQL;
595 struct msginfo msginfo;
596 err = msgctl_info(ns, msqid, cmd, &msginfo);
600 if (copy_to_user(buf, &msginfo, sizeof(struct msginfo))) {
737 struct msginfo msginfo;
738 err = msgctl_info(ns, msqid, cmd, &msginfo);
742 if (copy_to_user(uptr, &msginfo, sizeof(struct msginfo))) {