Home
last modified time | relevance | path

Searched refs:cpu_last_cid (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/kernel/arch/nds32/include/asm/
H A Dmmu_context.h23 extern unsigned int cpu_last_cid;
31 cid = cpu_last_cid; in __new_context()
32 cpu_last_cid += 1 << TLB_MISC_offCID; in __new_context()
33 if (cpu_last_cid == 0) in __new_context()
34 cpu_last_cid = 1 << TLB_MISC_offCID << CID_BITS; in __new_context()
46 ((mm->context.id ^ cpu_last_cid) >> TLB_MISC_offCID >> CID_BITS)) in check_context()
/OK3568_Linux_fs/kernel/arch/nds32/mm/
H A Dtlb.c10 unsigned int cpu_last_cid = { TLB_MISC_mskCID + (2 << TLB_MISC_offCID) }; variable