]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/asm-x86/resume-trace_32.h
IA64: SPARSEMEM_VMEMMAP 16K page size support
[mirror_ubuntu-bionic-kernel.git] / include / asm-x86 / resume-trace_32.h
1 #define TRACE_RESUME(user) do { \
2 if (pm_trace_enabled) { \
3 void *tracedata; \
4 asm volatile("movl $1f,%0\n" \
5 ".section .tracedata,\"a\"\n" \
6 "1:\t.word %c1\n" \
7 "\t.long %c2\n" \
8 ".previous" \
9 :"=r" (tracedata) \
10 : "i" (__LINE__), "i" (__FILE__)); \
11 generate_resume_trace(tracedata, user); \
12 } \
13 } while (0)