[xtensa-cvscommit] linux/include/asm-xtensa pgtable.h,1.4,1.5
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-01-17 18:10:22
|
Update of /cvsroot/xtensa/linux/include/asm-xtensa In directory sc8-pr-cvs1:/tmp/cvs-serv27518 Modified Files: pgtable.h Log Message: Fix check for cache aliasing (currently disallowed). Index: pgtable.h =================================================================== RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/pgtable.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pgtable.h 17 Jan 2003 00:31:30 -0000 1.4 --- pgtable.h 17 Jan 2003 18:10:15 -0000 1.5 *************** *** 63,70 **** /* Check for cache aliasing, and kill the build if found. */ ! #if (XCHAL_ICACHE_WAYS * PAGE_SIZE) > XCHAL_ICACHE_SIZE #error Cache aliasing not supported. #endif ! #if (XCHAL_DCACHE_WAYS * PAGE_SIZE) > XCHAL_DCACHE_SIZE #error Cache aliasing not supported. #endif --- 63,70 ---- /* Check for cache aliasing, and kill the build if found. */ ! #if XCHAL_ICACHE_SIZE > (XCHAL_ICACHE_WAYS * PAGE_SIZE) #error Cache aliasing not supported. #endif ! #if XCHAL_DCACHE_SIZE > (XCHAL_DCACHE_WAYS * PAGE_SIZE) #error Cache aliasing not supported. #endif |