-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 258991 b: refs/heads/master c: fc9a001 h: refs/heads/master i: 258989: d4e7f98 258987: 8eca5d4 258983: f5d0b0f 258975: 63a7284 v: v3
- Loading branch information
Richard Weinberger
authored and
Linus Torvalds
committed
Jul 26, 2011
1 parent
363cc94
commit 09478d8
Showing
4 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 548f0a4e02f6fa33278e77a2a6477cdeb512317f | ||
refs/heads/master: fc9a00187ba1300a0baae8e613cc62598e1a7de7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include "linux/mm.h" | ||
#include "asm/page.h" | ||
#include "asm/mman.h" | ||
|
||
const char *arch_vma_name(struct vm_area_struct *vma) | ||
{ | ||
if (vma->vm_mm && vma->vm_start == um_vdso_addr) | ||
return "[vdso]"; | ||
|
||
return NULL; | ||
} | ||
|
||
struct vm_area_struct *get_gate_vma(struct mm_struct *mm) | ||
{ | ||
return NULL; | ||
} | ||
|
||
int in_gate_area(struct mm_struct *mm, unsigned long addr) | ||
{ | ||
return 0; | ||
} | ||
|
||
int in_gate_area_no_mm(unsigned long addr) | ||
{ | ||
return 0; | ||
} |