MIPS: Change type of asid_cache to unsigned long

asid_cache must be unsigned long otherwise on 64 bit systems it will
become 0 if the value in get_new_mmu_context() reaches 0xffffffff and
in the end the assumption of ASID_FIRST_VERSION is not true anymore
thus leads to more dangerous things.

Initial patch by Yong Zhang <yong.zhang@windriver.com>

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Reported-by: libin <huawei.libin@huawei.com>
This commit is contained in:
Ralf Baechle 2014-05-21 11:42:10 +02:00
Родитель 60b5f90d0f
Коммит e5eb925a18
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -39,14 +39,14 @@ struct cache_desc {
#define MIPS_CACHE_PINDEX 0x00000020 /* Physically indexed cache */ #define MIPS_CACHE_PINDEX 0x00000020 /* Physically indexed cache */
struct cpuinfo_mips { struct cpuinfo_mips {
unsigned int udelay_val; unsigned long asid_cache;
unsigned int asid_cache;
/* /*
* Capability and feature descriptor structure for MIPS CPU * Capability and feature descriptor structure for MIPS CPU
*/ */
unsigned long options; unsigned long options;
unsigned long ases; unsigned long ases;
unsigned int udelay_val;
unsigned int processor_id; unsigned int processor_id;
unsigned int fpu_id; unsigned int fpu_id;
unsigned int msa_id; unsigned int msa_id;