2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LINUX_SHM_H_
|
|
|
|
#define _LINUX_SHM_H_
|
|
|
|
|
|
|
|
#include <asm/page.h>
|
2012-10-13 09:46:48 +00:00
|
|
|
#include <uapi/linux/shm.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define SHMALL (SHMMAX/PAGE_SIZE*(SHMMNI/16)) /* max shm system wide (pages) */
|
|
|
|
#include <asm/shmparam.h>
|
|
|
|
struct shmid_kernel /* private to the kernel */
|
|
|
|
{
|
|
|
|
struct kern_ipc_perm shm_perm;
|
|
|
|
struct file * shm_file;
|
|
|
|
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-28 23:55:31 +00:00
|
|
|
|
|
|
|
/* The task created the shm object. NULL if the task is dead. */
|
|
|
|
struct task_struct *shm_creator;
|
2005-04-16 22:20:36 +00: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 08:59:27 +00:00
|
|
|
#define SHM_NORESERVE 010000 /* don't check for reservations */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-12-12 00:01:34 +00: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 22:20:36 +00:00
|
|
|
#ifdef CONFIG_SYSVIPC
|
2012-07-30 21:42:38 +00:00
|
|
|
long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr,
|
|
|
|
unsigned long shmlba);
|
2007-03-01 23:46:08 +00:00
|
|
|
extern int is_file_shm_hugepages(struct file *file);
|
2011-07-26 23:08:48 +00:00
|
|
|
extern void exit_shm(struct task_struct *task);
|
2005-04-16 22:20:36 +00:00
|
|
|
#else
|
|
|
|
static inline long do_shmat(int shmid, char __user *shmaddr,
|
2012-07-30 21:42:38 +00:00
|
|
|
int shmflg, unsigned long *addr,
|
|
|
|
unsigned long shmlba)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2007-03-01 23:46:08 +00:00
|
|
|
static inline int is_file_shm_hugepages(struct file *file)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-26 23:08:48 +00:00
|
|
|
static inline void exit_shm(struct task_struct *task)
|
|
|
|
{
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _LINUX_SHM_H_ */
|