cache.h 221 B

12345678910
  1. #ifndef __UM_CACHE_H
  2. #define __UM_CACHE_H
  3. /* These are x86 numbers */
  4. #define L1_CACHE_SHIFT 5
  5. #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
  6. #define L1_CACHE_SHIFT_MAX 7 /* largest L1 which this arch supports */
  7. #endif