arch/x86/include/asm/uv/uv_geo.h
Source file repositories/reference/linux-study-clean/arch/x86/include/asm/uv/uv_geo.h
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/include/asm/uv/uv_geo.h- Extension
.h- Size
- 2405 bytes
- Lines
- 104
- Domain
- Architecture Layer
- Bucket
- arch/x86
- Inferred role
- Architecture Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
struct geo_common_sstruct geo_node_sstruct geo_rtr_sstruct geo_iocntl_sstruct geo_pcicard_sstruct geo_cpu_sstruct geo_mem_sfunction geo_rackfunction geo_slotfunction geo_blade
Annotated Snippet
struct geo_common_s {
unsigned char type; /* What type of h/w is named by this geoid_s */
unsigned char blade;
unsigned char slot; /* slot is IRU */
unsigned char upos;
unsigned char rack;
};
/* Additional fields for particular types of hardware */
struct geo_node_s {
struct geo_common_s common; /* No additional fields needed */
};
struct geo_rtr_s {
struct geo_common_s common; /* No additional fields needed */
};
struct geo_iocntl_s {
struct geo_common_s common; /* No additional fields needed */
};
struct geo_pcicard_s {
struct geo_iocntl_s common;
char bus; /* Bus/widget number */
char slot; /* PCI slot number */
};
/* Subcomponents of a node */
struct geo_cpu_s {
struct geo_node_s node;
unsigned char socket:4, /* Which CPU on the node */
thread:4;
unsigned char core;
};
struct geo_mem_s {
struct geo_node_s node;
char membus; /* The memory bus on the node */
char memslot; /* The memory slot on the bus */
};
union geoid_u {
struct geo_common_s common;
struct geo_node_s node;
struct geo_iocntl_s iocntl;
struct geo_pcicard_s pcicard;
struct geo_rtr_s rtr;
struct geo_cpu_s cpu;
struct geo_mem_s mem;
char padsize[GEOID_SIZE];
};
/* Defined constants */
#define GEO_MAX_LEN 48
#define GEO_TYPE_INVALID 0
#define GEO_TYPE_MODULE 1
#define GEO_TYPE_NODE 2
#define GEO_TYPE_RTR 3
#define GEO_TYPE_IOCNTL 4
#define GEO_TYPE_IOCARD 5
#define GEO_TYPE_CPU 6
#define GEO_TYPE_MEM 7
#define GEO_TYPE_MAX (GEO_TYPE_MEM+1)
static inline int geo_rack(union geoid_u g)
{
return (g.common.type == GEO_TYPE_INVALID) ?
-1 : g.common.rack;
}
static inline int geo_slot(union geoid_u g)
{
return (g.common.type == GEO_TYPE_INVALID) ?
-1 : g.common.upos;
}
static inline int geo_blade(union geoid_u g)
{
return (g.common.type == GEO_TYPE_INVALID) ?
-1 : g.common.blade * 2 + g.common.slot;
}
#endif /* _ASM_UV_GEO_H */
Annotation
- Detected declarations: `struct geo_common_s`, `struct geo_node_s`, `struct geo_rtr_s`, `struct geo_iocntl_s`, `struct geo_pcicard_s`, `struct geo_cpu_s`, `struct geo_mem_s`, `function geo_rack`, `function geo_slot`, `function geo_blade`.
- Atlas domain: Architecture Layer / arch/x86.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.