Files
linux-apfs/include/linux/shm.h
T

82 lines
2.1 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINUX_SHM_H_
#define _LINUX_SHM_H_
#include <linux/list.h>
2005-04-16 15:20:36 -07:00
#include <asm/page.h>
2012-10-13 10:46:48 +01:00
#include <uapi/linux/shm.h>
2005-04-16 15:20:36 -07:00
#include <asm/shmparam.h>
2005-04-16 15:20:36 -07:00
struct shmid_kernel /* private to the kernel */
{
struct kern_ipc_perm shm_perm;
2014-01-27 17:07:04 -08:00
struct file *shm_file;
2005-04-16 15:20:36 -07:00
unsigned long shm_nattch;
unsigned long shm_segsz;
time_t shm_atim;
time_t shm_dtim;
time_t shm_ctim;
pid_t shm_cprid;
pid_t shm_lprid;
struct user_struct *mlock_user;
2011-07-29 03:55:31 +04:00
/* The task created the shm object. NULL if the task is dead. */
struct task_struct *shm_creator;
struct list_head shm_clist; /* list by creator */
2005-04-16 15:20:36 -07:00
};
/* shm_mode upper byte flags */
#define SHM_DEST 01000 /* segment will be destroyed on last detach */
#define SHM_LOCKED 02000 /* segment will not be swapped */
#define SHM_HUGETLB 04000 /* segment will use huge TLB pages */
2005-11-07 00:59:27 -08:00
#define SHM_NORESERVE 010000 /* don't check for reservations */
2005-04-16 15:20:36 -07:00
/* Bits [26:31] are reserved */
/*
* When SHM_HUGETLB is set bits [26:31] encode the log2 of the huge page size.
* This gives us 6 bits, which is enough until someone invents 128 bit address
* spaces.
*
* Assume these are all power of twos.
* When 0 use the default page size.
*/
#define SHM_HUGE_SHIFT 26
#define SHM_HUGE_MASK 0x3f
#define SHM_HUGE_2MB (21 << SHM_HUGE_SHIFT)
#define SHM_HUGE_1GB (30 << SHM_HUGE_SHIFT)
2005-04-16 15:20:36 -07:00
#ifdef CONFIG_SYSVIPC
struct sysv_shm {
struct list_head shm_clist;
};
2012-07-30 14:42:38 -07:00
long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr,
unsigned long shmlba);
bool is_file_shm_hugepages(struct file *file);
void exit_shm(struct task_struct *task);
#define shm_init_task(task) INIT_LIST_HEAD(&(task)->sysvshm.shm_clist)
2005-04-16 15:20:36 -07:00
#else
struct sysv_shm {
/* empty */
};
2005-04-16 15:20:36 -07:00
static inline long do_shmat(int shmid, char __user *shmaddr,
2012-07-30 14:42:38 -07:00
int shmflg, unsigned long *addr,
unsigned long shmlba)
2005-04-16 15:20:36 -07:00
{
return -ENOSYS;
}
static inline bool is_file_shm_hugepages(struct file *file)
{
return false;
}
2011-07-26 16:08:48 -07:00
static inline void exit_shm(struct task_struct *task)
{
}
static inline void shm_init_task(struct task_struct *task)
{
}
2005-04-16 15:20:36 -07:00
#endif
#endif /* _LINUX_SHM_H_ */