diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/shm.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -969,10 +969,13 @@ SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg) | |||
969 | SYSCALL_DEFINE1(shmdt, char __user *, shmaddr) | 969 | SYSCALL_DEFINE1(shmdt, char __user *, shmaddr) |
970 | { | 970 | { |
971 | struct mm_struct *mm = current->mm; | 971 | struct mm_struct *mm = current->mm; |
972 | struct vm_area_struct *vma, *next; | 972 | struct vm_area_struct *vma; |
973 | unsigned long addr = (unsigned long)shmaddr; | 973 | unsigned long addr = (unsigned long)shmaddr; |
974 | loff_t size = 0; | ||
975 | int retval = -EINVAL; | 974 | int retval = -EINVAL; |
975 | #ifdef CONFIG_MMU | ||
976 | loff_t size = 0; | ||
977 | struct vm_area_struct *next; | ||
978 | #endif | ||
976 | 979 | ||
977 | if (addr & ~PAGE_MASK) | 980 | if (addr & ~PAGE_MASK) |
978 | return retval; | 981 | return retval; |