cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/include/asm/pm-trace.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_PM_TRACE_H

#define _ASM_X86_PM_TRACE_H

#include <asm/asm.h>


#define TRACE_RESUME(user)					\
do {                                                            \
        if (pm_trace_enabled) {                                 \
                const void *tracedata;                          \
                asm volatile(_ASM_MOV " $1f,%0\n"               \
                             ".section .tracedata,\"a\"\n"      \
                             "1:\t.word %c1\n\t"                \
                             _ASM_PTR " %c2\n"                  \
                             ".previous"                        \
                             :"=r" (tracedata)                  \
                             : "i" (__LINE__), "i" (__FILE__)); \
                generate_pm_trace(tracedata, user);             \
        }                                                       \
} while (0)


#define TRACE_SUSPEND(user)	TRACE_RESUME(user)

#endif /* _ASM_X86_PM_TRACE_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Thomas Gleixner1553.57%240.00%
Fu Zhonghui1139.29%120.00%
Greg Kroah-Hartman13.57%120.00%
Joe Perches13.57%120.00%
Total28100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.