blob: bcf8a6a3ec00d51b08e113248a0ca62d56f8b542 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_SHM_H_
2#define _LINUX_SHM_H_
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/page.h>
David Howells607ca462012-10-13 10:46:48 +01005#include <uapi/linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#define SHMALL (SHMMAX/PAGE_SIZE*(SHMMNI/16)) /* max shm system wide (pages) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/shmparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009struct shmid_kernel /* private to the kernel */
10{
11 struct kern_ipc_perm shm_perm;
12 struct file * shm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 unsigned long shm_nattch;
14 unsigned long shm_segsz;
15 time_t shm_atim;
16 time_t shm_dtim;
17 time_t shm_ctim;
18 pid_t shm_cprid;
19 pid_t shm_lprid;
20 struct user_struct *mlock_user;
Vasiliy Kulikov5774ed02011-07-29 03:55:31 +040021
22 /* The task created the shm object. NULL if the task is dead. */
23 struct task_struct *shm_creator;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
25
26/* shm_mode upper byte flags */
27#define SHM_DEST 01000 /* segment will be destroyed on last detach */
28#define SHM_LOCKED 02000 /* segment will not be swapped */
29#define SHM_HUGETLB 04000 /* segment will use huge TLB pages */
Badari Pulavartybf8f9722005-11-07 00:59:27 -080030#define SHM_NORESERVE 010000 /* don't check for reservations */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#ifdef CONFIG_SYSVIPC
Will Deacon079a96a2012-07-30 14:42:38 -070033long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr,
34 unsigned long shmlba);
Adam Litke516dffd2007-03-01 15:46:08 -080035extern int is_file_shm_hugepages(struct file *file);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -070036extern void exit_shm(struct task_struct *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#else
38static inline long do_shmat(int shmid, char __user *shmaddr,
Will Deacon079a96a2012-07-30 14:42:38 -070039 int shmflg, unsigned long *addr,
40 unsigned long shmlba)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 return -ENOSYS;
43}
Adam Litke516dffd2007-03-01 15:46:08 -080044static inline int is_file_shm_hugepages(struct file *file)
45{
46 return 0;
47}
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -070048static inline void exit_shm(struct task_struct *task)
49{
50}
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif /* _LINUX_SHM_H_ */