cregit-Linux how code gets into the kernel

Release 4.14 include/linux/msg.h

Directory: include/linux
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_MSG_H

#define _LINUX_MSG_H

#include <linux/list.h>
#include <linux/time64.h>
#include <uapi/linux/msg.h>

/* one msg_msg structure for each message */

struct msg_msg {
	
struct list_head m_list;
	
long m_type;
	
size_t m_ts;		/* message text size */
	
struct msg_msgseg *next;
	
void *security;
	/* the actual message follows immediately */
};

/* one msq_queue structure for each present queue on the system */

struct msg_queue {
	
struct kern_ipc_perm q_perm;
	
time64_t q_stime;		/* last msgsnd time */
	
time64_t q_rtime;		/* last msgrcv time */
	
time64_t q_ctime;		/* last change time */
	
unsigned long q_cbytes;		/* current number of bytes on queue */
	
unsigned long q_qnum;		/* number of messages in queue */
	
unsigned long q_qbytes;		/* max number of bytes on queue */
	
pid_t q_lspid;			/* pid of last msgsnd */
	
pid_t q_lrpid;			/* last receive pid */

	
struct list_head q_messages;
	
struct list_head q_receivers;
	
struct list_head q_senders;

} __randomize_layout;

#endif /* _LINUX_MSG_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman7774.04%222.22%
Linus Torvalds (pre-git)1110.58%111.11%
Deepa Dinamani65.77%111.11%
Stephen D. Smalley43.85%111.11%
David Howells21.92%111.11%
David Woodhouse21.92%111.11%
Mathias Krause10.96%111.11%
Kees Cook10.96%111.11%
Total104100.00%9100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.