arch/xtensa/include/uapi/asm/ipcbuf.h

Source file repositories/reference/linux-study-clean/arch/xtensa/include/uapi/asm/ipcbuf.h

File Facts

System
Linux kernel
Corpus path
arch/xtensa/include/uapi/asm/ipcbuf.h
Extension
.h
Size
937 bytes
Lines
41
Domain
Architecture Layer
Bucket
arch/xtensa
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _XTENSA_IPCBUF_H
#define _XTENSA_IPCBUF_H

#include <linux/posix_types.h>

/*
 * Pad space is left for:
 * - 32-bit mode_t and seq
 * - 2 miscellaneous 32-bit values
 *
 * This file is subject to the terms and conditions of the GNU General
 * Public License.  See the file "COPYING" in the main directory of
 * this archive for more details.
 */

struct ipc64_perm
{
	__kernel_key_t		key;
	__kernel_uid32_t	uid;
	__kernel_gid32_t	gid;
	__kernel_uid32_t	cuid;
	__kernel_gid32_t	cgid;
	__kernel_mode_t		mode;
	unsigned long		seq;
	unsigned long		__unused1;
	unsigned long		__unused2;
};

#endif /* _XTENSA_IPCBUF_H */

Annotation

Implementation Notes