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

« back to all changes in this revision

Viewing changes to arch/powerpc/kernel/vdso.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:
820
820
}
821
821
arch_initcall(vdso_init);
822
822
 
823
 
int in_gate_area_no_task(unsigned long addr)
824
 
{
825
 
        return 0;
826
 
}
827
 
 
828
 
int in_gate_area(struct task_struct *task, unsigned long addr)
829
 
{
830
 
        return 0;
831
 
}
832
 
 
833
 
struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
 
823
int in_gate_area_no_mm(unsigned long addr)
 
824
{
 
825
        return 0;
 
826
}
 
827
 
 
828
int in_gate_area(struct mm_struct *mm, unsigned long addr)
 
829
{
 
830
        return 0;
 
831
}
 
832
 
 
833
struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
834
834
{
835
835
        return NULL;
836
836
}