Skip to content
Snippets Groups Projects
  • Greg Kroah-Hartman's avatar
    b2441318
    License cleanup: add SPDX GPL-2.0 license identifier to files with no license · b2441318
    Greg Kroah-Hartman authored
    Many source files in the tree are missing licensing information, which
    makes it harder for compliance tools to determine the correct license.
    
    By default all files without license information are under the default
    license of the kernel, which is GPL version 2.
    
    Update the files which contain no license information with the 'GPL-2.0'
    SPDX license identifier.  The SPDX identifier is a legally binding
    shorthand, which can be used instead of the full boiler plate text.
    
    This patch is based on work done by Thomas Gleixner and Kate Stewart and
    Philippe Ombredanne.
    
    How this work was done:
    
    Patches were generated and checked against linux-4.14-rc6 for a subset of
    the use cases:
     - file had no licensing information it it.
     - file was a */uapi/* one with no licensing information in it,
     - file was a */uapi/* one with existing licensing information,
    
    Further patches will be generated in subsequent months to fix up cases
    where non-standard...
    b2441318
    History
    License cleanup: add SPDX GPL-2.0 license identifier to files with no license
    Greg Kroah-Hartman authored
    Many source files in the tree are missing licensing information, which
    makes it harder for compliance tools to determine the correct license.
    
    By default all files without license information are under the default
    license of the kernel, which is GPL version 2.
    
    Update the files which contain no license information with the 'GPL-2.0'
    SPDX license identifier.  The SPDX identifier is a legally binding
    shorthand, which can be used instead of the full boiler plate text.
    
    This patch is based on work done by Thomas Gleixner and Kate Stewart and
    Philippe Ombredanne.
    
    How this work was done:
    
    Patches were generated and checked against linux-4.14-rc6 for a subset of
    the use cases:
     - file had no licensing information it it.
     - file was a */uapi/* one with no licensing information in it,
     - file was a */uapi/* one with existing licensing information,
    
    Further patches will be generated in subsequent months to fix up cases
    where non-standard...
trace-events-emulation.h 781 B
/* SPDX-License-Identifier: GPL-2.0 */
#undef TRACE_SYSTEM
#define TRACE_SYSTEM emulation

#if !defined(_TRACE_EMULATION_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_EMULATION_H

#include <linux/tracepoint.h>

TRACE_EVENT(instruction_emulation,

	TP_PROTO(const char *instr, u64 addr),
	TP_ARGS(instr, addr),

	TP_STRUCT__entry(
		__string(instr, instr)
		__field(u64, addr)
	),

	TP_fast_assign(
		__assign_str(instr, instr);
		__entry->addr = addr;
	),

	TP_printk("instr=\"%s\" addr=0x%llx", __get_str(instr), __entry->addr)
);

#endif /* _TRACE_EMULATION_H */

/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_PATH .

#define TRACE_INCLUDE_FILE trace-events-emulation
#include <trace/define_trace.h>