Skip to content

Commit

Permalink
parisc: Move cache flush functions into .text.hot section
Browse files Browse the repository at this point in the history
and move the disable_sr_hashing() C and assembly functions into the
.init section.

Signed-off-by: Helge Deller <deller@gmx.de>
  • Loading branch information
Helge Deller committed Apr 11, 2018
1 parent 75abf64 commit 2a03bb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/parisc/kernel/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ parisc_cache_init(void)
}
}

void disable_sr_hashing(void)
void __init disable_sr_hashing(void)
{
int srhash_type, retval;
unsigned long space_bits;
Expand Down
9 changes: 5 additions & 4 deletions arch/parisc/kernel/pacache.S
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@
#include <asm/cache.h>
#include <asm/ldcw.h>
#include <linux/linkage.h>
#include <linux/init.h>

.text
.align 128
.section .text.hot
.align 16

ENTRY_CFI(flush_tlb_all_local)
.proc
Expand Down Expand Up @@ -328,8 +329,6 @@ fdsync:
.procend
ENDPROC_CFI(flush_data_cache_local)

.align 16

/* Macros to serialize TLB purge operations on SMP. */

.macro tlb_lock la,flags,tmp
Expand Down Expand Up @@ -1216,6 +1215,8 @@ ENTRY_CFI(flush_kernel_icache_range_asm)
.procend
ENDPROC_CFI(flush_kernel_icache_range_asm)

__INIT

/* align should cover use of rfi in disable_sr_hashing_asm and
* srdis_done.
*/
Expand Down

0 comments on commit 2a03bb9

Please sign in to comment.