cache.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_CACHE_H
  2. #define _ASM_IA64_CACHE_H
  3. #include <linux/config.h>
  4. /*
  5.  * Copyright (C) 1998-2000 Hewlett-Packard Co
  6.  * David Mosberger-Tang <davidm@hpl.hp.com>
  7.  */
  8. /* Bytes per L1 (data) cache line.  */
  9. #define L1_CACHE_SHIFT CONFIG_IA64_L1_CACHE_SHIFT
  10. #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
  11. #ifdef CONFIG_SMP
  12. # define SMP_CACHE_SHIFT L1_CACHE_SHIFT
  13. # define SMP_CACHE_BYTES L1_CACHE_BYTES
  14. #else
  15.   /*
  16.    * The "aligned" directive can only _increase_ alignment, so this is
  17.    * safe and provides an easy way to avoid wasting space on a
  18.    * uni-processor:
  19.    */
  20. # define SMP_CACHE_SHIFT 3
  21. # define SMP_CACHE_BYTES (1 << 3)
  22. #endif
  23. #endif /* _ASM_IA64_CACHE_H */