summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/linux/sched.h3
-rw-r--r--kernel/exit.c27
2 files changed, 0 insertions, 30 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index ff0fcd301ba1..c3fc6fc5ed9a 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -591,9 +591,6 @@ static inline int capable(int cap)
*/
extern struct mm_struct * mm_alloc(void);
-extern struct mm_struct * start_lazy_tlb(void);
-extern void end_lazy_tlb(struct mm_struct *mm);
-
/* mmdrop drops the mm and the page tables */
extern inline void FASTCALL(__mmdrop(struct mm_struct *));
static inline void mmdrop(struct mm_struct * mm)
diff --git a/kernel/exit.c b/kernel/exit.c
index 6b2f1113b926..c45159219e83 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -435,33 +435,6 @@ void exit_fs(struct task_struct *tsk)
}
/*
- * We can use these to temporarily drop into
- * "lazy TLB" mode and back.
- */
-struct mm_struct * start_lazy_tlb(void)
-{
- struct mm_struct *mm = current->mm;
- current->mm = NULL;
- /* active_mm is still 'mm' */
- atomic_inc(&mm->mm_count);
- enter_lazy_tlb(mm, current, smp_processor_id());
- return mm;
-}
-
-void end_lazy_tlb(struct mm_struct *mm)
-{
- struct mm_struct *active_mm = current->active_mm;
-
- current->mm = mm;
- if (mm != active_mm) {
- current->active_mm = mm;
- activate_mm(active_mm, mm);
- }
- mmdrop(active_mm);
-}
-
-
-/*
* Turn us into a lazy TLB process if we
* aren't already..
*/