2005-04-17 05:20:36 +07:00
|
|
|
#ifndef _PARISC_TLBFLUSH_H
|
|
|
|
#define _PARISC_TLBFLUSH_H
|
|
|
|
|
|
|
|
/* TLB flushing routines.... */
|
|
|
|
|
|
|
|
#include <linux/mm.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-21 04:22:52 +07:00
|
|
|
#include <linux/sched.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
|
2005-10-22 09:40:24 +07:00
|
|
|
|
|
|
|
/* This is for the serialisation of PxTLB broadcasts. At least on the
|
|
|
|
* N class systems, only one PxTLB inter processor broadcast can be
|
|
|
|
* active at any one time on the Merced bus. This tlb purge
|
|
|
|
* synchronisation is fairly lightweight and harmless so we activate
|
2009-06-17 03:51:48 +07:00
|
|
|
* it on all systems not just the N class.
|
2015-07-02 04:18:37 +07:00
|
|
|
|
|
|
|
* It is also used to ensure PTE updates are atomic and consistent
|
|
|
|
* with the TLB.
|
2005-11-18 04:44:14 +07:00
|
|
|
*/
|
2005-10-22 09:40:24 +07:00
|
|
|
extern spinlock_t pa_tlb_lock;
|
|
|
|
|
2009-06-17 03:51:48 +07:00
|
|
|
#define purge_tlb_start(flags) spin_lock_irqsave(&pa_tlb_lock, flags)
|
|
|
|
#define purge_tlb_end(flags) spin_unlock_irqrestore(&pa_tlb_lock, flags)
|
2005-10-22 09:40:24 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
extern void flush_tlb_all(void);
|
2006-01-11 08:47:49 +07:00
|
|
|
extern void flush_tlb_all_local(void *);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2013-05-08 04:42:47 +07:00
|
|
|
#define smp_flush_tlb_all() flush_tlb_all()
|
|
|
|
|
2015-07-02 04:18:37 +07:00
|
|
|
int __flush_tlb_range(unsigned long sid,
|
|
|
|
unsigned long start, unsigned long end);
|
|
|
|
|
|
|
|
#define flush_tlb_range(vma, start, end) \
|
|
|
|
__flush_tlb_range((vma)->vm_mm->context, start, end)
|
|
|
|
|
|
|
|
#define flush_tlb_kernel_range(start, end) \
|
|
|
|
__flush_tlb_range(0, start, end)
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/*
|
|
|
|
* flush_tlb_mm()
|
|
|
|
*
|
2015-07-02 04:18:37 +07:00
|
|
|
* The code to switch to a new context is NOT valid for processes
|
|
|
|
* which play with the space id's. Thus, we have to preserve the
|
|
|
|
* space and just flush the entire tlb. However, the compilers,
|
|
|
|
* dynamic linker, etc, do not manipulate space id's, so there
|
|
|
|
* could be a significant performance benefit in switching contexts
|
|
|
|
* and not flushing the whole tlb.
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
|
|
|
|
2006-12-12 07:07:51 +07:00
|
|
|
static inline void flush_tlb_mm(struct mm_struct *mm)
|
|
|
|
{
|
2007-02-19 02:35:45 +07:00
|
|
|
BUG_ON(mm == &init_mm); /* Should never happen */
|
|
|
|
|
2008-12-23 20:44:30 +07:00
|
|
|
#if 1 || defined(CONFIG_SMP)
|
2015-07-02 04:18:37 +07:00
|
|
|
/* Except for very small threads, flushing the whole TLB is
|
|
|
|
* faster than using __flush_tlb_range. The pdtlb and pitlb
|
|
|
|
* instructions are very slow because of the TLB broadcast.
|
|
|
|
* It might be faster to do local range flushes on all CPUs
|
|
|
|
* on PA 2.0 systems.
|
|
|
|
*/
|
2007-02-19 02:35:45 +07:00
|
|
|
flush_tlb_all();
|
|
|
|
#else
|
2008-12-23 20:44:30 +07:00
|
|
|
/* FIXME: currently broken, causing space id and protection ids
|
2015-07-02 04:18:37 +07:00
|
|
|
* to go out of sync, resulting in faults on userspace accesses.
|
|
|
|
* This approach needs further investigation since running many
|
|
|
|
* small applications (e.g., GCC testsuite) is faster on HP-UX.
|
2008-12-23 20:44:30 +07:00
|
|
|
*/
|
2007-02-19 02:35:45 +07:00
|
|
|
if (mm) {
|
|
|
|
if (mm->context != 0)
|
|
|
|
free_sid(mm->context);
|
|
|
|
mm->context = alloc_sid();
|
|
|
|
if (mm == current->active_mm)
|
|
|
|
load_context(mm->context);
|
|
|
|
}
|
|
|
|
#endif
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void flush_tlb_page(struct vm_area_struct *vma,
|
|
|
|
unsigned long addr)
|
|
|
|
{
|
2013-06-30 03:42:12 +07:00
|
|
|
unsigned long flags, sid;
|
2009-06-17 03:51:48 +07:00
|
|
|
|
2013-06-30 03:42:12 +07:00
|
|
|
sid = vma->vm_mm->context;
|
2009-06-17 03:51:48 +07:00
|
|
|
purge_tlb_start(flags);
|
2013-06-30 03:42:12 +07:00
|
|
|
mtsp(sid, 1);
|
2005-04-17 05:20:36 +07:00
|
|
|
pdtlb(addr);
|
2015-07-02 04:18:37 +07:00
|
|
|
if (unlikely(split_tlb))
|
|
|
|
pitlb(addr);
|
2009-06-17 03:51:48 +07:00
|
|
|
purge_tlb_end(flags);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
#endif
|