mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-18 19:47:09 +07:00
Blackfin: allow scheduler functions to be placed into L1
Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
8d5c2f03bb
commit
b8d0c778e6
@ -50,7 +50,9 @@ SECTIONS
|
|||||||
_text = .;
|
_text = .;
|
||||||
__stext = .;
|
__stext = .;
|
||||||
TEXT_TEXT
|
TEXT_TEXT
|
||||||
|
#ifndef CONFIG_SCHEDULE_L1
|
||||||
SCHED_TEXT
|
SCHED_TEXT
|
||||||
|
#endif
|
||||||
LOCK_TEXT
|
LOCK_TEXT
|
||||||
KPROBES_TEXT
|
KPROBES_TEXT
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
@ -180,6 +182,9 @@ SECTIONS
|
|||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__stext_l1 = .;
|
__stext_l1 = .;
|
||||||
*(.l1.text)
|
*(.l1.text)
|
||||||
|
#ifdef CONFIG_SCHEDULE_L1
|
||||||
|
SCHED_TEXT
|
||||||
|
#endif
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__etext_l1 = .;
|
__etext_l1 = .;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user