mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
96a388de5d
Move the headers to include/asm-x86 and fixup the header install make rules Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
14 lines
366 B
C
14 lines
366 B
C
#define TRACE_RESUME(user) do { \
|
|
if (pm_trace_enabled) { \
|
|
void *tracedata; \
|
|
asm volatile("movq $1f,%0\n" \
|
|
".section .tracedata,\"a\"\n" \
|
|
"1:\t.word %c1\n" \
|
|
"\t.quad %c2\n" \
|
|
".previous" \
|
|
:"=r" (tracedata) \
|
|
: "i" (__LINE__), "i" (__FILE__)); \
|
|
generate_resume_trace(tracedata, user); \
|
|
} \
|
|
} while (0)
|