summaryrefslogtreecommitdiffstats
path: root/include/asm-i386/resume-trace.h
blob: ec9cfd65623005acbcc31a5ecfa873cd80d47ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define TRACE_RESUME(user) do {					\
	if (pm_trace_enabled) {					\
		void *tracedata;				\
		asm volatile("movl $1f,%0\n"			\
			".section .tracedata,\"a\"\n"		\
			"1:\t.word %c1\n"			\
			"\t.long %c2\n"				\
			".previous"				\
			:"=r" (tracedata)			\
			: "i" (__LINE__), "i" (__FILE__));	\
		generate_resume_trace(tracedata, user);		\
	}							\
} while (0)
OpenPOWER on IntegriCloud