summaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/resume-trace.h
blob: 34bf998fdf6286c9ac2ef24d4fc03423d7916f13 (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("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)
OpenPOWER on IntegriCloud