mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
target-mips: fix ASID synchronisation for MIPS MT
When syncing the task ASID with EntryHi, correctly or the value instead of assigning it. Reported-by: "Dr. David Alan Gilbert" <dgilbert@redhat.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Cc: Leon Alrae <leon.alrae@imgtec.com> Reviewed-by: Leon Alrae <leon.alrae@imgtec.com> Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
This commit is contained in:
parent
6b9c26fb5e
commit
6a973e6b65
1 changed files with 1 additions and 1 deletions
|
@ -661,7 +661,7 @@ static void sync_c0_tcstatus(CPUMIPSState *cpu, int tc,
|
||||||
|
|
||||||
/* Sync the TASID with EntryHi. */
|
/* Sync the TASID with EntryHi. */
|
||||||
cpu->CP0_EntryHi &= ~0xff;
|
cpu->CP0_EntryHi &= ~0xff;
|
||||||
cpu->CP0_EntryHi = tasid;
|
cpu->CP0_EntryHi |= tasid;
|
||||||
|
|
||||||
compute_hflags(cpu);
|
compute_hflags(cpu);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue