mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	The commit
  297b64c743 ("ras: acpi / apei: generate trace event for unrecognized CPER section")
brought inconsistency in UUID types which are used across the RAS
subsystem.
Fix this by using guid_t everywhere.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Cc: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Thomas Tai <thomas.tai@oracle.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Tyler Baicar <tbaicar@codeaurora.org>
Link: https://lkml.kernel.org/r/20190125143035.81589-1-andriy.shevchenko@linux.intel.com
		
	
			
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (C) 2014 Intel Corporation
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *	Chen, Gong <gong.chen@linux.intel.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/ras.h>
 | 
						|
#include <linux/uuid.h>
 | 
						|
 | 
						|
#define CREATE_TRACE_POINTS
 | 
						|
#define TRACE_INCLUDE_PATH ../../include/ras
 | 
						|
#include <ras/ras_event.h>
 | 
						|
 | 
						|
void log_non_standard_event(const guid_t *sec_type, const guid_t *fru_id,
 | 
						|
			    const char *fru_text, const u8 sev, const u8 *err,
 | 
						|
			    const u32 len)
 | 
						|
{
 | 
						|
	trace_non_standard_event(sec_type, fru_id, fru_text, sev, err, len);
 | 
						|
}
 | 
						|
 | 
						|
void log_arm_hw_error(struct cper_sec_proc_arm *err)
 | 
						|
{
 | 
						|
	trace_arm_event(err);
 | 
						|
}
 | 
						|
 | 
						|
static int __init ras_init(void)
 | 
						|
{
 | 
						|
	int rc = 0;
 | 
						|
 | 
						|
	ras_debugfs_init();
 | 
						|
	rc = ras_add_daemon_trace();
 | 
						|
 | 
						|
	return rc;
 | 
						|
}
 | 
						|
subsys_initcall(ras_init);
 | 
						|
 | 
						|
#if defined(CONFIG_ACPI_EXTLOG) || defined(CONFIG_ACPI_EXTLOG_MODULE)
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(extlog_mem_event);
 | 
						|
#endif
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(mc_event);
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(non_standard_event);
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(arm_event);
 | 
						|
 | 
						|
static int __init parse_ras_param(char *str)
 | 
						|
{
 | 
						|
#ifdef CONFIG_RAS_CEC
 | 
						|
	parse_cec_param(str);
 | 
						|
#endif
 | 
						|
 | 
						|
	return 1;
 | 
						|
}
 | 
						|
__setup("ras", parse_ras_param);
 |