3 * Copyright (C) 1992, 1993 Krishna Balasubramanian
4 * Many improvements/fixes by Bruno Haible.
5 * Replaced `struct shm_desc' by `struct vm_area_struct', July 1994.
6 * Fixed the shm swap deallocation (shm_unuse()), August 1998 Andrea Arcangeli.
8 * /proc/sysvipc/shm support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
9 * BIGMEM support, Andrea Arcangeli <andrea@suse.de>
10 * SMP thread shm, Jean-Luc Boyard <jean-luc.boyard@siemens.fr>
11 * HIGHMEM support, Ingo Molnar <mingo@redhat.com>
12 * Make shmmax, shmall, shmmni sysctl'able, Christoph Rohland <cr@sap.com>
13 * Shared /dev/zero support, Kanoj Sarcar <kanoj@sgi.com>
14 * Move the mm functionality over to mm/shmem.c, Christoph Rohland <cr@sap.com>
16 * support for audit of ipc object properties and permission changes
17 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
21 * Pavel Emelianov <xemul@openvz.org>
24 #include <linux/slab.h>
26 #include <linux/hugetlb.h>
27 #include <linux/shm.h>
28 #include <linux/init.h>
29 #include <linux/file.h>
30 #include <linux/mman.h>
31 #include <linux/shmem_fs.h>
32 #include <linux/security.h>
33 #include <linux/syscalls.h>
34 #include <linux/audit.h>
35 #include <linux/capability.h>
36 #include <linux/ptrace.h>
37 #include <linux/seq_file.h>
38 #include <linux/mutex.h>
39 #include <linux/nsproxy.h>
41 #include <asm/uaccess.h>
45 static struct file_operations shm_file_operations;
46 static struct vm_operations_struct shm_vm_ops;
48 static struct ipc_ids init_shm_ids;
50 #define shm_ids(ns) (*((ns)->ids[IPC_SHM_IDS]))
52 #define shm_lock(ns, id) \
53 ((struct shmid_kernel*)ipc_lock(&shm_ids(ns),id))
54 #define shm_unlock(shp) \
55 ipc_unlock(&(shp)->shm_perm)
56 #define shm_get(ns, id) \
57 ((struct shmid_kernel*)ipc_get(&shm_ids(ns),id))
58 #define shm_buildid(ns, id, seq) \
59 ipc_buildid(&shm_ids(ns), id, seq)
61 static int newseg (struct ipc_namespace *ns, key_t key,
62 int shmflg, size_t size);
63 static void shm_open (struct vm_area_struct *shmd);
64 static void shm_close (struct vm_area_struct *shmd);
65 static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp);
67 static int sysvipc_shm_proc_show(struct seq_file *s, void *it);
70 static void __ipc_init __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids)
72 ns->ids[IPC_SHM_IDS] = ids;
73 ns->shm_ctlmax = SHMMAX;
74 ns->shm_ctlall = SHMALL;
75 ns->shm_ctlmni = SHMMNI;
80 static void do_shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *shp)
83 shp->shm_perm.mode |= SHM_DEST;
84 /* Do not find it any more */
85 shp->shm_perm.key = IPC_PRIVATE;
92 int shm_init_ns(struct ipc_namespace *ns)
96 ids = kmalloc(sizeof(struct ipc_ids), GFP_KERNEL);
100 __shm_init_ns(ns, ids);
104 void shm_exit_ns(struct ipc_namespace *ns)
107 struct shmid_kernel *shp;
109 mutex_lock(&shm_ids(ns).mutex);
110 for (i = 0; i <= shm_ids(ns).max_id; i++) {
111 shp = shm_lock(ns, i);
115 do_shm_rmid(ns, shp);
117 mutex_unlock(&shm_ids(ns).mutex);
119 ipc_fini_ids(ns->ids[IPC_SHM_IDS]);
120 kfree(ns->ids[IPC_SHM_IDS]);
121 ns->ids[IPC_SHM_IDS] = NULL;
125 void __init shm_init (void)
127 __shm_init_ns(&init_ipc_ns, &init_shm_ids);
128 ipc_init_proc_interface("sysvipc/shm",
129 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n",
130 IPC_SHM_IDS, sysvipc_shm_proc_show);
133 static inline int shm_checkid(struct ipc_namespace *ns,
134 struct shmid_kernel *s, int id)
136 if (ipc_checkid(&shm_ids(ns), &s->shm_perm, id))
141 static inline struct shmid_kernel *shm_rmid(struct ipc_namespace *ns, int id)
143 return (struct shmid_kernel *)ipc_rmid(&shm_ids(ns), id);
146 static inline int shm_addid(struct ipc_namespace *ns, struct shmid_kernel *shp)
148 return ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
153 static inline void shm_inc(struct ipc_namespace *ns, int id)
155 struct shmid_kernel *shp;
157 shp = shm_lock(ns, id);
159 shp->shm_atim = get_seconds();
160 shp->shm_lprid = current->tgid;
165 #define shm_file_ns(file) (*((struct ipc_namespace **)&(file)->private_data))
167 /* This is called by fork, once for every shm attach. */
168 static void shm_open(struct vm_area_struct *shmd)
170 shm_inc(shm_file_ns(shmd->vm_file),
171 shmd->vm_file->f_path.dentry->d_inode->i_ino);
175 * shm_destroy - free the struct shmid_kernel
177 * @shp: struct to free
179 * It has to be called with shp and shm_ids.mutex locked,
180 * but returns with shp unlocked and freed.
182 static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
184 ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
185 shm_rmid(ns, shp->id);
187 if (!is_file_hugepages(shp->shm_file))
188 shmem_lock(shp->shm_file, 0, shp->mlock_user);
190 user_shm_unlock(shp->shm_file->f_path.dentry->d_inode->i_size,
192 fput (shp->shm_file);
193 security_shm_free(shp);
198 * remove the attach descriptor shmd.
199 * free memory for segment if it is marked destroyed.
200 * The descriptor has already been removed from the current->mm->mmap list
201 * and will later be kfree()d.
203 static void shm_close (struct vm_area_struct *shmd)
205 struct file * file = shmd->vm_file;
206 int id = file->f_path.dentry->d_inode->i_ino;
207 struct shmid_kernel *shp;
208 struct ipc_namespace *ns;
210 ns = shm_file_ns(file);
212 mutex_lock(&shm_ids(ns).mutex);
213 /* remove from the list of attaches of the shm segment */
214 shp = shm_lock(ns, id);
216 shp->shm_lprid = current->tgid;
217 shp->shm_dtim = get_seconds();
219 if(shp->shm_nattch == 0 &&
220 shp->shm_perm.mode & SHM_DEST)
221 shm_destroy(ns, shp);
224 mutex_unlock(&shm_ids(ns).mutex);
227 static int shm_mmap(struct file * file, struct vm_area_struct * vma)
231 ret = shmem_mmap(file, vma);
233 vma->vm_ops = &shm_vm_ops;
234 if (!(vma->vm_flags & VM_WRITE))
235 vma->vm_flags &= ~VM_MAYWRITE;
236 shm_inc(shm_file_ns(file), file->f_path.dentry->d_inode->i_ino);
242 static int shm_release(struct inode *ino, struct file *file)
244 struct ipc_namespace *ns;
246 ns = shm_file_ns(file);
248 shm_file_ns(file) = NULL;
252 static struct file_operations shm_file_operations = {
254 .release = shm_release,
256 .get_unmapped_area = shmem_get_unmapped_area,
260 static struct vm_operations_struct shm_vm_ops = {
261 .open = shm_open, /* callback for a new vm-area open */
262 .close = shm_close, /* callback for when the vm-area is released */
263 .nopage = shmem_nopage,
264 #if defined(CONFIG_NUMA) && defined(CONFIG_SHMEM)
265 .set_policy = shmem_set_policy,
266 .get_policy = shmem_get_policy,
270 static int newseg (struct ipc_namespace *ns, key_t key, int shmflg, size_t size)
273 struct shmid_kernel *shp;
274 int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT;
279 if (size < SHMMIN || size > ns->shm_ctlmax)
282 if (ns->shm_tot + numpages > ns->shm_ctlall)
285 shp = ipc_rcu_alloc(sizeof(*shp));
289 shp->shm_perm.key = key;
290 shp->shm_perm.mode = (shmflg & S_IRWXUGO);
291 shp->mlock_user = NULL;
293 shp->shm_perm.security = NULL;
294 error = security_shm_alloc(shp);
300 if (shmflg & SHM_HUGETLB) {
301 /* hugetlb_zero_setup takes care of mlock user accounting */
302 file = hugetlb_zero_setup(size);
303 shp->mlock_user = current->user;
305 int acctflag = VM_ACCOUNT;
307 * Do not allow no accounting for OVERCOMMIT_NEVER, even
310 if ((shmflg & SHM_NORESERVE) &&
311 sysctl_overcommit_memory != OVERCOMMIT_NEVER)
313 sprintf (name, "SYSV%08x", key);
314 file = shmem_file_setup(name, size, acctflag);
316 error = PTR_ERR(file);
321 id = shm_addid(ns, shp);
325 shp->shm_cprid = current->tgid;
327 shp->shm_atim = shp->shm_dtim = 0;
328 shp->shm_ctim = get_seconds();
329 shp->shm_segsz = size;
331 shp->id = shm_buildid(ns, id, shp->shm_perm.seq);
332 shp->shm_file = file;
333 file->f_path.dentry->d_inode->i_ino = shp->id;
335 shm_file_ns(file) = get_ipc_ns(ns);
337 /* Hugetlb ops would have already been assigned. */
338 if (!(shmflg & SHM_HUGETLB))
339 file->f_op = &shm_file_operations;
341 ns->shm_tot += numpages;
348 security_shm_free(shp);
353 asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
355 struct shmid_kernel *shp;
357 struct ipc_namespace *ns;
359 ns = current->nsproxy->ipc_ns;
361 mutex_lock(&shm_ids(ns).mutex);
362 if (key == IPC_PRIVATE) {
363 err = newseg(ns, key, shmflg, size);
364 } else if ((id = ipc_findkey(&shm_ids(ns), key)) == -1) {
365 if (!(shmflg & IPC_CREAT))
368 err = newseg(ns, key, shmflg, size);
369 } else if ((shmflg & IPC_CREAT) && (shmflg & IPC_EXCL)) {
372 shp = shm_lock(ns, id);
374 if (shp->shm_segsz < size)
376 else if (ipcperms(&shp->shm_perm, shmflg))
379 int shmid = shm_buildid(ns, id, shp->shm_perm.seq);
380 err = security_shm_associate(shp, shmflg);
386 mutex_unlock(&shm_ids(ns).mutex);
391 static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
395 return copy_to_user(buf, in, sizeof(*in));
400 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
401 out.shm_segsz = in->shm_segsz;
402 out.shm_atime = in->shm_atime;
403 out.shm_dtime = in->shm_dtime;
404 out.shm_ctime = in->shm_ctime;
405 out.shm_cpid = in->shm_cpid;
406 out.shm_lpid = in->shm_lpid;
407 out.shm_nattch = in->shm_nattch;
409 return copy_to_user(buf, &out, sizeof(out));
422 static inline unsigned long copy_shmid_from_user(struct shm_setbuf *out, void __user *buf, int version)
427 struct shmid64_ds tbuf;
429 if (copy_from_user(&tbuf, buf, sizeof(tbuf)))
432 out->uid = tbuf.shm_perm.uid;
433 out->gid = tbuf.shm_perm.gid;
434 out->mode = tbuf.shm_perm.mode;
440 struct shmid_ds tbuf_old;
442 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
445 out->uid = tbuf_old.shm_perm.uid;
446 out->gid = tbuf_old.shm_perm.gid;
447 out->mode = tbuf_old.shm_perm.mode;
456 static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
460 return copy_to_user(buf, in, sizeof(*in));
465 if(in->shmmax > INT_MAX)
466 out.shmmax = INT_MAX;
468 out.shmmax = (int)in->shmmax;
470 out.shmmin = in->shmmin;
471 out.shmmni = in->shmmni;
472 out.shmseg = in->shmseg;
473 out.shmall = in->shmall;
475 return copy_to_user(buf, &out, sizeof(out));
482 static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss,
490 for (i = 0; i <= shm_ids(ns).max_id; i++) {
491 struct shmid_kernel *shp;
494 shp = shm_get(ns, i);
498 inode = shp->shm_file->f_path.dentry->d_inode;
500 if (is_file_hugepages(shp->shm_file)) {
501 struct address_space *mapping = inode->i_mapping;
502 *rss += (HPAGE_SIZE/PAGE_SIZE)*mapping->nrpages;
504 struct shmem_inode_info *info = SHMEM_I(inode);
505 spin_lock(&info->lock);
506 *rss += inode->i_mapping->nrpages;
507 *swp += info->swapped;
508 spin_unlock(&info->lock);
513 asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds __user *buf)
515 struct shm_setbuf setbuf;
516 struct shmid_kernel *shp;
518 struct ipc_namespace *ns;
520 if (cmd < 0 || shmid < 0) {
525 version = ipc_parse_version(&cmd);
526 ns = current->nsproxy->ipc_ns;
528 switch (cmd) { /* replace with proc interface ? */
531 struct shminfo64 shminfo;
533 err = security_shm_shmctl(NULL, cmd);
537 memset(&shminfo,0,sizeof(shminfo));
538 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
539 shminfo.shmmax = ns->shm_ctlmax;
540 shminfo.shmall = ns->shm_ctlall;
542 shminfo.shmmin = SHMMIN;
543 if(copy_shminfo_to_user (buf, &shminfo, version))
545 /* reading a integer is always atomic */
546 err= shm_ids(ns).max_id;
553 struct shm_info shm_info;
555 err = security_shm_shmctl(NULL, cmd);
559 memset(&shm_info,0,sizeof(shm_info));
560 mutex_lock(&shm_ids(ns).mutex);
561 shm_info.used_ids = shm_ids(ns).in_use;
562 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
563 shm_info.shm_tot = ns->shm_tot;
564 shm_info.swap_attempts = 0;
565 shm_info.swap_successes = 0;
566 err = shm_ids(ns).max_id;
567 mutex_unlock(&shm_ids(ns).mutex);
568 if(copy_to_user (buf, &shm_info, sizeof(shm_info))) {
573 err = err < 0 ? 0 : err;
579 struct shmid64_ds tbuf;
581 memset(&tbuf, 0, sizeof(tbuf));
582 shp = shm_lock(ns, shmid);
586 } else if(cmd==SHM_STAT) {
588 if (shmid > shm_ids(ns).max_id)
590 result = shm_buildid(ns, shmid, shp->shm_perm.seq);
592 err = shm_checkid(ns, shp,shmid);
598 if (ipcperms (&shp->shm_perm, S_IRUGO))
600 err = security_shm_shmctl(shp, cmd);
603 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
604 tbuf.shm_segsz = shp->shm_segsz;
605 tbuf.shm_atime = shp->shm_atim;
606 tbuf.shm_dtime = shp->shm_dtim;
607 tbuf.shm_ctime = shp->shm_ctim;
608 tbuf.shm_cpid = shp->shm_cprid;
609 tbuf.shm_lpid = shp->shm_lprid;
610 if (!is_file_hugepages(shp->shm_file))
611 tbuf.shm_nattch = shp->shm_nattch;
613 tbuf.shm_nattch = file_count(shp->shm_file) - 1;
615 if(copy_shmid_to_user (buf, &tbuf, version))
624 shp = shm_lock(ns, shmid);
629 err = shm_checkid(ns, shp,shmid);
633 err = audit_ipc_obj(&(shp->shm_perm));
637 if (!capable(CAP_IPC_LOCK)) {
639 if (current->euid != shp->shm_perm.uid &&
640 current->euid != shp->shm_perm.cuid)
642 if (cmd == SHM_LOCK &&
643 !current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur)
647 err = security_shm_shmctl(shp, cmd);
652 struct user_struct * user = current->user;
653 if (!is_file_hugepages(shp->shm_file)) {
654 err = shmem_lock(shp->shm_file, 1, user);
656 shp->shm_perm.mode |= SHM_LOCKED;
657 shp->mlock_user = user;
660 } else if (!is_file_hugepages(shp->shm_file)) {
661 shmem_lock(shp->shm_file, 0, shp->mlock_user);
662 shp->shm_perm.mode &= ~SHM_LOCKED;
663 shp->mlock_user = NULL;
671 * We cannot simply remove the file. The SVID states
672 * that the block remains until the last person
673 * detaches from it, then is deleted. A shmat() on
674 * an RMID segment is legal in older Linux and if
675 * we change it apps break...
677 * Instead we set a destroyed flag, and then blow
678 * the name away when the usage hits zero.
680 mutex_lock(&shm_ids(ns).mutex);
681 shp = shm_lock(ns, shmid);
685 err = shm_checkid(ns, shp, shmid);
689 err = audit_ipc_obj(&(shp->shm_perm));
693 if (current->euid != shp->shm_perm.uid &&
694 current->euid != shp->shm_perm.cuid &&
695 !capable(CAP_SYS_ADMIN)) {
700 err = security_shm_shmctl(shp, cmd);
704 do_shm_rmid(ns, shp);
705 mutex_unlock(&shm_ids(ns).mutex);
711 if (copy_shmid_from_user (&setbuf, buf, version)) {
715 mutex_lock(&shm_ids(ns).mutex);
716 shp = shm_lock(ns, shmid);
720 err = shm_checkid(ns, shp,shmid);
723 err = audit_ipc_obj(&(shp->shm_perm));
726 err = audit_ipc_set_perm(0, setbuf.uid, setbuf.gid, setbuf.mode);
730 if (current->euid != shp->shm_perm.uid &&
731 current->euid != shp->shm_perm.cuid &&
732 !capable(CAP_SYS_ADMIN)) {
736 err = security_shm_shmctl(shp, cmd);
740 shp->shm_perm.uid = setbuf.uid;
741 shp->shm_perm.gid = setbuf.gid;
742 shp->shm_perm.mode = (shp->shm_perm.mode & ~S_IRWXUGO)
743 | (setbuf.mode & S_IRWXUGO);
744 shp->shm_ctim = get_seconds();
757 mutex_unlock(&shm_ids(ns).mutex);
766 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
768 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
769 * "raddr" thing points to kernel space, and there has to be a wrapper around
772 long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr)
774 struct shmid_kernel *shp;
783 struct ipc_namespace *ns;
788 } else if ((addr = (ulong)shmaddr)) {
789 if (addr & (SHMLBA-1)) {
790 if (shmflg & SHM_RND)
791 addr &= ~(SHMLBA-1); /* round down */
793 #ifndef __ARCH_FORCE_SHMLBA
794 if (addr & ~PAGE_MASK)
798 flags = MAP_SHARED | MAP_FIXED;
800 if ((shmflg & SHM_REMAP))
806 if (shmflg & SHM_RDONLY) {
810 prot = PROT_READ | PROT_WRITE;
811 acc_mode = S_IRUGO | S_IWUGO;
813 if (shmflg & SHM_EXEC) {
819 * We cannot rely on the fs check since SYSV IPC does have an
820 * additional creator id...
822 ns = current->nsproxy->ipc_ns;
823 shp = shm_lock(ns, shmid);
828 err = shm_checkid(ns, shp,shmid);
833 if (ipcperms(&shp->shm_perm, acc_mode)) {
839 err = security_shm_shmat(shp, shmaddr, shmflg);
845 file = shp->shm_file;
846 size = i_size_read(file->f_path.dentry->d_inode);
850 down_write(¤t->mm->mmap_sem);
851 if (addr && !(shmflg & SHM_REMAP)) {
852 user_addr = ERR_PTR(-EINVAL);
853 if (find_vma_intersection(current->mm, addr, addr + size))
856 * If shm segment goes below stack, make sure there is some
857 * space left for the stack to grow (at least 4 pages).
859 if (addr < current->mm->start_stack &&
860 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
864 user_addr = (void*) do_mmap (file, addr, size, prot, flags, 0);
867 up_write(¤t->mm->mmap_sem);
869 mutex_lock(&shm_ids(ns).mutex);
870 shp = shm_lock(ns, shmid);
873 if(shp->shm_nattch == 0 &&
874 shp->shm_perm.mode & SHM_DEST)
875 shm_destroy(ns, shp);
878 mutex_unlock(&shm_ids(ns).mutex);
880 *raddr = (unsigned long) user_addr;
882 if (IS_ERR(user_addr))
883 err = PTR_ERR(user_addr);
888 asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
893 err = do_shmat(shmid, shmaddr, shmflg, &ret);
896 force_successful_syscall_return();
901 * detach and kill segment if marked destroyed.
902 * The work is done in shm_close.
904 asmlinkage long sys_shmdt(char __user *shmaddr)
906 struct mm_struct *mm = current->mm;
907 struct vm_area_struct *vma, *next;
908 unsigned long addr = (unsigned long)shmaddr;
910 int retval = -EINVAL;
912 if (addr & ~PAGE_MASK)
915 down_write(&mm->mmap_sem);
918 * This function tries to be smart and unmap shm segments that
919 * were modified by partial mlock or munmap calls:
920 * - It first determines the size of the shm segment that should be
921 * unmapped: It searches for a vma that is backed by shm and that
922 * started at address shmaddr. It records it's size and then unmaps
924 * - Then it unmaps all shm vmas that started at shmaddr and that
925 * are within the initially determined size.
926 * Errors from do_munmap are ignored: the function only fails if
927 * it's called with invalid parameters or if it's called to unmap
928 * a part of a vma. Both calls in this function are for full vmas,
929 * the parameters are directly copied from the vma itself and always
930 * valid - therefore do_munmap cannot fail. (famous last words?)
933 * If it had been mremap()'d, the starting address would not
934 * match the usual checks anyway. So assume all vma's are
935 * above the starting address given.
937 vma = find_vma(mm, addr);
943 * Check if the starting address would match, i.e. it's
944 * a fragment created by mprotect() and/or munmap(), or it
945 * otherwise it starts at this address with no hassles.
947 if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) &&
948 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
951 size = vma->vm_file->f_path.dentry->d_inode->i_size;
952 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
954 * We discovered the size of the shm segment, so
955 * break out of here and fall through to the next
956 * loop that uses the size information to stop
957 * searching for matching vma's.
967 * We need look no further than the maximum address a fragment
968 * could possibly have landed at. Also cast things to loff_t to
969 * prevent overflows and make comparisions vs. equal-width types.
971 size = PAGE_ALIGN(size);
972 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
975 /* finding a matching vma now does not alter retval */
976 if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) &&
977 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
979 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
983 up_write(&mm->mmap_sem);
987 #ifdef CONFIG_PROC_FS
988 static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
990 struct shmid_kernel *shp = it;
993 #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
994 #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
996 if (sizeof(size_t) <= sizeof(int))
997 format = SMALL_STRING;
1000 return seq_printf(s, format,
1007 is_file_hugepages(shp->shm_file) ? (file_count(shp->shm_file) - 1) : shp->shm_nattch,