~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/sh/kernel/vsyscall/vsyscall.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
        return NULL;
95
95
}
96
96
 
97
 
struct vm_area_struct *get_gate_vma(struct task_struct *task)
 
97
struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
98
98
{
99
99
        return NULL;
100
100
}
101
101
 
102
 
int in_gate_area(struct task_struct *task, unsigned long address)
 
102
int in_gate_area(struct mm_struct *mm, unsigned long address)
103
103
{
104
104
        return 0;
105
105
}
106
106
 
107
 
int in_gate_area_no_task(unsigned long address)
 
107
int in_gate_area_no_mm(unsigned long address)
108
108
{
109
109
        return 0;
110
110
}