cpudata.h 582 B

123456789101112131415161718192021222324252627
  1. /* cpudata.h: Per-cpu parameters.
  2. *
  3. * Copyright (C) 2004 Keith M Wesolowski (wesolows@foobazco.org)
  4. *
  5. * Based on include/asm-sparc64/cpudata.h and Linux 2.4 smp.h
  6. * both (C) David S. Miller.
  7. */
  8. #ifndef _SPARC_CPUDATA_H
  9. #define _SPARC_CPUDATA_H
  10. #include <linux/percpu.h>
  11. typedef struct {
  12. unsigned long udelay_val;
  13. unsigned long clock_tick;
  14. unsigned int multiplier;
  15. unsigned int counter;
  16. int prom_node;
  17. int mid;
  18. int next;
  19. } cpuinfo_sparc;
  20. DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
  21. #define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
  22. #endif /* _SPARC_CPUDATA_H */