smtc_proc.h 449 B

123456789101112131415161718192021222324
  1. /*
  2. * Definitions for SMTC /proc entries
  3. * Copyright(C) 2005 MIPS Technologies Inc.
  4. */
  5. #ifndef __ASM_SMTC_PROC_H
  6. #define __ASM_SMTC_PROC_H
  7. /*
  8. * per-"CPU" statistics
  9. */
  10. struct smtc_cpu_proc {
  11. unsigned long timerints;
  12. unsigned long selfipis;
  13. };
  14. extern struct smtc_cpu_proc smtc_cpu_stats[NR_CPUS];
  15. /* Count of number of recoveries of "stolen" FPU access rights on 34K */
  16. extern atomic_t smtc_fpu_recoveries;
  17. #endif /* __ASM_SMTC_PROC_H */