Commit 4df5d868 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Fix ptrace in the vsyscall dso area

From: Roland McGrath <roland@redhat.com>

The #include is the part of this patch that matters, so the #ifdef below
works.

The rest of the patch removes gratuitous duplication due to some strange
aversion to concision in the presence of #ifdef, the kind that is all too
common, utterly pointless, and error prone.
parent f33ce2f4
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/mmzone.h> #include <linux/mmzone.h>
#include <linux/rbtree.h> #include <linux/rbtree.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/elf.h>
#ifndef CONFIG_DISCONTIGMEM /* Don't use mapnrs, do it properly */ #ifndef CONFIG_DISCONTIGMEM /* Don't use mapnrs, do it properly */
extern unsigned long max_mapnr; extern unsigned long max_mapnr;
...@@ -643,31 +644,24 @@ kernel_map_pages(struct page *page, int numpages, int enable) ...@@ -643,31 +644,24 @@ kernel_map_pages(struct page *page, int numpages, int enable)
#endif #endif
#ifndef CONFIG_ARCH_GATE_AREA #ifndef CONFIG_ARCH_GATE_AREA
#ifdef AT_SYSINFO_EHDR
static inline int in_gate_area(struct task_struct *task, unsigned long addr) static inline int in_gate_area(struct task_struct *task, unsigned long addr)
{ {
#ifdef AT_SYSINFO_EHDR
if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END)) if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
return 1; return 1;
else #endif
return 0; return 0;
} }
extern struct vm_area_struct gate_vma; extern struct vm_area_struct gate_vma;
static inline struct vm_area_struct *get_gate_vma(struct task_struct *tsk) static inline struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
{ {
#ifdef AT_SYSINFO_EHDR
return &gate_vma; return &gate_vma;
}
#else #else
static inline int in_gate_area(struct task_struct *task, unsigned long addr)
{
return 0; return 0;
}
static inline struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
{
return NULL;
}
#endif #endif
}
#endif #endif
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment