1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-23 16:01:42 +00:00

Remove arm64_tlb_flushID_SE, it's unused and may be wrong.

Sponsored by:	ABT Systems Ltd
This commit is contained in:
Andrew Turner 2017-02-06 17:50:09 +00:00
parent eaf5669483
commit 2c40450667
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=313347
2 changed files with 0 additions and 14 deletions

View File

@ -103,19 +103,6 @@ ENTRY(arm64_tlb_flushID)
ret
END(arm64_tlb_flushID)
ENTRY(arm64_tlb_flushID_SE)
ldr x1, .Lpage_mask
bic x0, x0, x1
#ifdef SMP
tlbi vae1is, x0
#else
tlbi vae1, x0
#endif
dsb ish
isb
ret
END(arm64_tlb_flushID_SE)
/*
* void arm64_dcache_wb_range(vm_offset_t, vm_size_t)
*/

View File

@ -129,7 +129,6 @@ extern int64_t dczva_line_size;
#define cpu_setttb(a) arm64_setttb(a)
#define cpu_tlb_flushID() arm64_tlb_flushID()
#define cpu_tlb_flushID_SE(e) arm64_tlb_flushID_SE(e)
#define cpu_dcache_wbinv_range(a, s) arm64_dcache_wbinv_range((a), (s))
#define cpu_dcache_inv_range(a, s) arm64_dcache_inv_range((a), (s))