arch/powerpc/perf/req-gen/_begin.h

Source file repositories/reference/linux-study-clean/arch/powerpc/perf/req-gen/_begin.h

File Facts

System
Linux kernel
Corpus path
arch/powerpc/perf/req-gen/_begin.h
Extension
.h
Size
470 bytes
Lines
17
Domain
Architecture Layer
Bucket
arch/powerpc
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.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef POWERPC_PERF_REQ_GEN_H_
#define POWERPC_PERF_REQ_GEN_H_

#include <linux/stringify.h>

#define CAT2_STR_(t, s) __stringify(t/s)
#define CAT2_STR(t, s) CAT2_STR_(t, s)
#define I(...) __VA_ARGS__

#endif

#define REQ_GEN_PREFIX req-gen
#define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
#define REQUEST_END   CAT2_STR(REQ_GEN_PREFIX, _request-end.h)

Annotation

Implementation Notes