All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] MIPS: change type of asid_cache to unsigned long
@ 2014-05-21  5:36 ` Yong Zhang
  0 siblings, 0 replies; 22+ messages in thread
From: Yong Zhang @ 2014-05-21  5:36 UTC (permalink / raw)
  To: ralf, huawei.libin; +Cc: linux-mips, linux-kernel

asid_cache must be unsigned long otherwise on 64bit system
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.

Reported-by: libin <huawei.libin@huawei.com>
Signed-off-by: Yong Zhang <yong.zhang@windriver.com>
---

V2<-V1: Add the reporter.

 arch/mips/include/asm/cpu-info.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/include/asm/cpu-info.h b/arch/mips/include/asm/cpu-info.h
index f6299be..ebcc2ed 100644
--- a/arch/mips/include/asm/cpu-info.h
+++ b/arch/mips/include/asm/cpu-info.h
@@ -40,7 +40,7 @@ struct cache_desc {
 
 struct cpuinfo_mips {
 	unsigned int		udelay_val;
-	unsigned int		asid_cache;
+	unsigned long		asid_cache;
 
 	/*
 	 * Capability and feature descriptor structure for MIPS CPU
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2014-05-30  7:19 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21  5:36 [PATCH V2] MIPS: change type of asid_cache to unsigned long Yong Zhang
2014-05-21  5:36 ` Yong Zhang
2014-05-27  4:16 ` Li Zefan
2014-05-27  4:16   ` Li Zefan
2014-05-27  4:34   ` Yong Zhang
2014-05-27  4:34     ` Yong Zhang
2014-05-27  4:56     ` Li Zefan
2014-05-27  4:56       ` Li Zefan
2014-05-27  4:50   ` Yong Zhang
2014-05-27  4:50     ` Yong Zhang
2014-05-27  5:07     ` Li Zefan
2014-05-27  5:07       ` Li Zefan
2014-05-27  5:23       ` Yong Zhang
2014-05-27  5:23         ` Yong Zhang
2014-05-27  5:52         ` Li Zefan
2014-05-27  5:52           ` Li Zefan
2014-05-28 20:09   ` Aaro Koskinen
2014-05-29  8:57     ` Li Zefan
2014-05-29  8:57       ` Li Zefan
2014-05-29 10:20       ` Ralf Baechle
2014-05-30  7:08     ` Libin
2014-05-30  7:08       ` Libin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.