Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
95519b26
Commit
95519b26
authored
Apr 09, 2002
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace flush_tlb_all with flush_tlb_kernel_range which allows
optimisations on some architectures.
parent
513bf064
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
13 deletions
+12
-13
arch/ppc64/mm/init.c
arch/ppc64/mm/init.c
+0
-9
include/asm-alpha/tlbflush.h
include/asm-alpha/tlbflush.h
+2
-0
include/asm-i386/tlbflush.h
include/asm-i386/tlbflush.h
+3
-0
include/asm-ppc64/tlbflush.h
include/asm-ppc64/tlbflush.h
+4
-2
mm/highmem.c
mm/highmem.c
+1
-1
mm/vmalloc.c
mm/vmalloc.c
+2
-1
No files found.
arch/ppc64/mm/init.c
View file @
95519b26
...
...
@@ -261,15 +261,6 @@ static void map_io_page(unsigned long ea, unsigned long pa, int flags)
}
}
void
flush_tlb_all
(
void
)
{
/* Implemented to just flush the vmalloc area.
* vmalloc is the only user of flush_tlb_all.
*/
__flush_tlb_range
(
NULL
,
VMALLOC_START
,
VMALLOC_END
);
}
void
flush_tlb_mm
(
struct
mm_struct
*
mm
)
{
...
...
include/asm-alpha/tlbflush.h
View file @
95519b26
...
...
@@ -152,4 +152,6 @@ extern void flush_tlb_range(struct vm_area_struct *, unsigned long,
#endif
/* CONFIG_SMP */
#define flush_tlb_kernel_range(start, end) flush_tlb_all()
#endif
/* _ALPHA_TLBFLUSH_H */
include/asm-i386/tlbflush.h
View file @
95519b26
...
...
@@ -67,6 +67,7 @@ __asm__ __volatile__("invlpg %0": :"m" (*(char *) addr))
* - flush_tlb_mm(mm) flushes the specified mm context TLB's
* - flush_tlb_page(vma, vmaddr) flushes one page
* - flush_tlb_range(vma, start, end) flushes a range of pages
* - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
* - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
*
* ..but the i386 has somewhat limited tlb flushing capabilities,
...
...
@@ -132,6 +133,8 @@ extern struct tlb_state cpu_tlbstate[NR_CPUS];
#endif
#define flush_tlb_kernel_range(start, end) flush_tlb_all()
static
inline
void
flush_tlb_pgtables
(
struct
mm_struct
*
mm
,
unsigned
long
start
,
unsigned
long
end
)
{
...
...
include/asm-ppc64/tlbflush.h
View file @
95519b26
...
...
@@ -8,14 +8,13 @@
/*
* TLB flushing:
*
* - flush_tlb_all() flushes all processes TLBs
* - flush_tlb_mm(mm) flushes the specified mm context TLB's
* - flush_tlb_page(vma, vmaddr) flushes one page
* - flush_tlb_range(vma, start, end) flushes a range of pages
* - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
* - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
*/
extern
void
flush_tlb_all
(
void
);
extern
void
flush_tlb_mm
(
struct
mm_struct
*
mm
);
extern
void
flush_tlb_page
(
struct
vm_area_struct
*
vma
,
unsigned
long
vmaddr
);
extern
void
__flush_tlb_range
(
struct
mm_struct
*
mm
,
...
...
@@ -23,6 +22,9 @@ extern void __flush_tlb_range(struct mm_struct *mm,
#define flush_tlb_range(vma, start, end) \
__flush_tlb_range(vma->vm_mm, start, end)
#define flush_tlb_kernel_range(start, end) \
__flush_tlb_range(&init_mm, (start), (end))
extern
inline
void
flush_tlb_pgtables
(
struct
mm_struct
*
mm
,
unsigned
long
start
,
unsigned
long
end
)
{
...
...
mm/highmem.c
View file @
95519b26
...
...
@@ -88,7 +88,7 @@ static void flush_all_zero_pkmaps(void)
page
->
virtual
=
NULL
;
}
flush_tlb_
all
(
);
flush_tlb_
kernel_range
(
PKMAP_ADDR
(
0
),
PKMAP_ADDR
(
LAST_PKMAP
)
);
}
static
inline
unsigned
long
map_new_virtual
(
struct
page
*
page
)
...
...
mm/vmalloc.c
View file @
95519b26
...
...
@@ -81,6 +81,7 @@ static inline void free_area_pmd(pgd_t * dir, unsigned long address, unsigned lo
void
vmfree_area_pages
(
unsigned
long
address
,
unsigned
long
size
)
{
pgd_t
*
dir
;
unsigned
long
start
=
address
;
unsigned
long
end
=
address
+
size
;
dir
=
pgd_offset_k
(
address
);
...
...
@@ -90,7 +91,7 @@ void vmfree_area_pages(unsigned long address, unsigned long size)
address
=
(
address
+
PGDIR_SIZE
)
&
PGDIR_MASK
;
dir
++
;
}
while
(
address
&&
(
address
<
end
));
flush_tlb_
all
(
);
flush_tlb_
kernel_range
(
start
,
end
);
}
static
inline
int
alloc_area_pte
(
pte_t
*
pte
,
unsigned
long
address
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment