arch/sparc: Remove unneeded group_addrenv call which handled by up_doirq

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-04-17 22:55:05 +08:00 committed by Petro Karashchenko
parent d28892e454
commit 2e7b10356f
3 changed files with 0 additions and 28 deletions

View File

@ -156,16 +156,6 @@ void up_exit(int status)
tcb = this_task(); tcb = this_task();
#ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously running
* task is closed down gracefully (data caches dump, MMU flushed) and
* set up the address environment for the new thread at the head of
* the ready-to-run list.
*/
(void)group_addrenv(tcb);
#endif
/* Reset scheduler parameters */ /* Reset scheduler parameters */
nxsched_resume_scheduler(tcb); nxsched_resume_scheduler(tcb);

View File

@ -138,15 +138,6 @@ void up_block_task(struct tcb_s *tcb, tstate_t task_state)
struct tcb_s *nexttcb = this_task(); struct tcb_s *nexttcb = this_task();
#ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously
* running task is closed down gracefully (data caches dump,
* MMU flushed) and set up the address environment for the new
* thread at the head of the ready-to-run list.
*/
(void)group_addrenv(nexttcb);
#endif
/* Reset scheduler parameters */ /* Reset scheduler parameters */
nxsched_resume_scheduler(nexttcb); nxsched_resume_scheduler(nexttcb);

View File

@ -122,15 +122,6 @@ void up_unblock_task(struct tcb_s *tcb)
struct tcb_s *nexttcb = this_task(); struct tcb_s *nexttcb = this_task();
#ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously
* running task is closed down gracefully (data caches dump,
* MMU flushed) and set up the address environment for the new
* thread at the head of the ready-to-run list.
*/
(void)group_addrenv(nexttcb);
#endif
/* Update scheduler parameters */ /* Update scheduler parameters */
nxsched_resume_scheduler(nexttcb); nxsched_resume_scheduler(nexttcb);