1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* cpudata.h: Per-cpu parameters. 3 * 4 * Copyright (C) 2003, 2005, 2006 David S. Mil 5 */ 6 7 #ifndef _SPARC64_CPUDATA_H 8 #define _SPARC64_CPUDATA_H 9 10 #ifndef __ASSEMBLY__ 11 12 typedef struct { 13 /* Dcache line 1 */ 14 unsigned int __softirq_pending; /* 15 unsigned int __nmi_count; 16 unsigned long clock_tick; /* %ti 17 unsigned long __pad; 18 unsigned int irq0_irqs; 19 unsigned int __pad2; 20 21 /* Dcache line 2, rarely used */ 22 unsigned int dcache_size; 23 unsigned int dcache_line_size; 24 unsigned int icache_size; 25 unsigned int icache_line_size; 26 unsigned int ecache_size; 27 unsigned int ecache_line_size; 28 unsigned short sock_id; /* phy 29 unsigned short core_id; 30 unsigned short max_cache_id; /* gro 31 signed short proc_id; /* str 32 } cpuinfo_sparc; 33 34 DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data); 35 #define cpu_data(__cpu) per_cpu(__cpu_ 36 #define local_cpu_data() (*this_cpu_ptr 37 38 #endif /* !(__ASSEMBLY__) */ 39 40 #include <asm/trap_block.h> 41 42 #endif /* _SPARC64_CPUDATA_H */ 43
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.